###### tags: `python` # anaconda ## 虛擬環境 清單 ```command conda env list ``` ## 虛擬環境 建立 ```command conda create --name myenv python=3.5 ``` ## 虛擬環境 啟用 ```command conda activate myenv ``` ## 虛擬環境 退出 ```command kconda deactivate ``` ## 虛擬環境中以安中的東西 ```command conda list ``` ## 虛擬環境中以安中的package ```command conda list ``` ## 刪除虛擬環境中的package ```command conda remove --name myenv package_name ``` ## 刪除虛擬環境 ```command conda env remove --name myenv ``` # 生成清單 $ pip freeze > requirements.txt # 安裝清單上的套件 $ pip install -r requirements.txt
×
Sign in
Email
Password
Forgot password
or
By clicking below, you agree to our
terms of service
.
Sign in via Facebook
Sign in via Twitter
Sign in via GitHub
Sign in via Dropbox
Sign in with Wallet
Wallet (
)
Connect another wallet
New to HackMD?
Sign up