- Python Deep Learning Cookbook
- Indra den Bakker
- 167字
- 2021-07-02 15:43:11
How to do it...
- You can directly download the installation file for Anaconda on your machine as follows (adjust your Anaconda file accordingly):
curl -O https://repo.continuum.io/archive/Anaconda3-4.3.1-Linux-x86_64.sh
- Next, run the bash script (if necessary, adjust the filename accordingly):
bash Anaconda3-4.3.1-Linux-x86_64.sh
Follow all prompts and choose 'yes' when you're asked to to add the PATH to the .bashrc file (the default is 'no').
- Afterwards, reload the file:
source ~/.bashrc
- Now, let's set up an Anaconda environment. Let's start with copying the files from the GitHub repository and opening the directory:
git clone https://github.com/indradenbakker/Python-Deep-Learning-Cookbook-Kit.git
cd Python-Deep-Learning-Cookbook-Kit
- Create the environment with the following command:
conda env create -f environment-deep-learning-cookbook.yml
- This creates an environment named environment-deep-learning-cookbook and installs all libraries and dependencies included in the .yml file. All libraries used in this book are included, for example, NumPy, OpenCV, Jupyter, and scikit-learn.
- Activate the environment:
source activate environment-deep-learning-cookbook
- You're now ready to run Python. Follow the next recipe to install Jupyter and the deep learning frameworks used in this book.
推薦閱讀
- Visual C++串口通信開發入門與編程實踐
- Ceph Cookbook
- Java 11 Cookbook
- Yocto for Raspberry Pi
- Linux操作系統基礎案例教程
- Learning Laravel's Eloquent
- Salesforce Reporting and Dashboards
- Visual Basic程序設計實驗指導(第二版)
- Linux C編程:一站式學習
- Access 2010中文版項目教程
- Geospatial Development By Example with Python
- SQL Server 2008 R2數據庫技術及應用(第3版)
- Hands-On JavaScript for Python Developers
- Python Programming for Arduino
- SQL Server 2008實用教程(第3版)