- Python Reinforcement Learning
- Sudharsan Ravichandiran Sean Saito Rajalingappaa Shanmugamani Yang Wenzhuo
- 301字
- 2021-06-24 15:17:26
Installing Anaconda
All the examples in the book use the Anaconda version of Python. Anaconda is an open source distribution of Python. It is widely used for scientific computing and processing a large volume of data. It provides an excellent package management environment. It provides support for Windows, macOS, and Linux. Anaconda comes with Python installed along with popular packages used for scientific computing such as NumPy, SciPy, and so on.
To download Anaconda, visit https://www.anaconda.com/download/, where you will see an option for downloading Anaconda for different platforms.
If you are using Windows or Mac, you can directly download the graphical installer according to your machine architecture and install using the graphical installer.
If you are using Linux, follow these steps:
- Open your Terminal and type the following to download Anaconda:
wget https://repo.continuum.io/archive/Anaconda3-5.0.1-Linux-x86_64.sh
- Upon completion, we can install Anaconda via the following command:
bash Anaconda3-5.0.1-Linux-x86_64.sh
After successful installation of Anaconda, we need to create a new Anaconda environment that is basically a virtual environment. What is the need for a virtual environment? Say you are working on project A, which uses NumPy version 1.14, and project B, which uses NumPy version 1.13. So, to work on project B you either downgrade NumPy or reinstall Anaconda. In each project, we use different libraries with different versions which are not applicable to other projects. Instead of downgrading or upgrading versions or reinstalling Anaconda every time for a new project, we use a virtual environment. This creates an isolated environment for the current project so that each project can have its own dependencies and will not affect other projects. We will create such an environment using the following command and name our environment universe:
conda create --name universe python=3.6 anaconda
We can activate our environment using the following command:
source activate universe
- Python絕技:運(yùn)用Python成為頂級(jí)數(shù)據(jù)工程師
- Game Development with Swift
- 計(jì)算機(jī)信息技術(shù)基礎(chǔ)實(shí)驗(yàn)與習(xí)題
- Python數(shù)據(jù)分析、挖掘與可視化從入門到精通
- Libgdx Cross/platform Game Development Cookbook
- 云計(jì)算與大數(shù)據(jù)應(yīng)用
- 大數(shù)據(jù)架構(gòu)和算法實(shí)現(xiàn)之路:電商系統(tǒng)的技術(shù)實(shí)戰(zhàn)
- Learning Proxmox VE
- SQL應(yīng)用及誤區(qū)分析
- 數(shù)據(jù)科學(xué)實(shí)戰(zhàn)指南
- 探索新型智庫(kù)發(fā)展之路:藍(lán)迪國(guó)際智庫(kù)報(bào)告·2015(下冊(cè))
- 實(shí)用數(shù)據(jù)結(jié)構(gòu)
- 區(qū)域云計(jì)算和大數(shù)據(jù)產(chǎn)業(yè)發(fā)展:浙江樣板
- 大數(shù)據(jù)與機(jī)器學(xué)習(xí):實(shí)踐方法與行業(yè)案例
- 區(qū)塊鏈應(yīng)用開發(fā)指南:業(yè)務(wù)場(chǎng)景剖析與實(shí)戰(zhàn)