December 2017
Beginner to intermediate
410 pages
12h 45m
English
Using environments is a great way to work with different versions of Python and/or packages. It also provides an isolated environment to install everything so that if something goes wrong, it won’t affect the rest of the system. Python environments are particular handy when you need both Python 3 and Python 2 installed on your system to work with different Python projects. You can also use environments to see all the package dependencies.
I personally use the Anaconda Python distribution, which comes with conda. The “Getting Started” guide is a useful resource in this case.1 If you installed Anaconda with Python 3 (Appendix A), this appendix will show you how to create a separate environment that has Python 2 in it. If we run ...