- 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.
推薦閱讀
- Vue.js 3.x快速入門
- Deploying Node.js
- Beginning Java Data Structures and Algorithms
- Mastering Ember.js
- TestNG Beginner's Guide
- Big Data Analytics
- Building RESTful Python Web Services
- SQL Server從入門到精通(第3版)
- Solr Cookbook(Third Edition)
- Frank Kane's Taming Big Data with Apache Spark and Python
- Oracle數據庫編程經典300例
- 游戲設計的底層邏輯
- Learning ROS for Robotics Programming
- Mastering Linux Kernel Development
- 正則指引(第2版)