Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 532 Bytes

File metadata and controls

14 lines (9 loc) · 532 Bytes

Links or Blog

1.Python init.py 作用详解 link: can be used to import func in different dir.

2.python Numpy cs213_numpy


Configuration Python Environment 2 and 3 in windows at the same time

py -2 # run in python 2 env

py -3 # run in python 3 env

py -2 -m pip install package_name # install packages or '.whl file' in python 2 env

py -3 -m pip install package_name # '-m' stands for 'running pip module'