- Hands-On Generative Adversarial Networks with Keras
- Rafael Valle
- 139字
- 2021-06-24 14:33:52
Setting up a virtual environment in Anaconda
A virtual environment allows us to have different versions of libraries and executables, avoiding conflicts between them and making it easy to develop multiple projects at the same time. Creating a virtual environment in Anaconda is easy and only requires executing a single command on Anaconda's CLI. With the following command, we are going to create a virtual environment running Python 3.5 and name it deeplearning:
conda create -n deeplearning pip python=3.5
Now that we have created the deeplearning virtual environment, we are going to activate it so that we can start populating it with Python packages. To do so, open Anaconda's CLI and type the following command:
activate deeplearning
After typing this command, your CLI prompt should change and include a prefix to indicate that the virtual environment is currently active.
- 高效能辦公必修課:Word圖文處理
- 中文版Photoshop CS5數碼照片處理完全自學一本通
- 精通MATLAB圖像處理
- Circos Data Visualization How-to
- 商戰數據挖掘:你需要了解的數據科學與分析思維
- CSS全程指南
- HBase Design Patterns
- 計算機網絡技術實訓
- 運動控制器與交流伺服系統的調試和應用
- INSTANT Autodesk Revit 2013 Customization with .NET How-to
- 悟透JavaScript
- AMK伺服控制系統原理及應用
- Visual Basic項目開發案例精粹
- Oracle 11g Anti-hacker's Cookbook
- 深度學習之模型優化:核心算法與案例實踐