Move from Excel to Python with Pandas Transcripts
Chapter: Setup and installations
Lecture: Conda quick reference
Login or
purchase this course
to watch this video and the rest of the course contents.
0:00
now that you have your conda environment installed, want to give you this quick reference so you can refer back to it in the
0:06
future?. One of the things to keep in mind is that you want to keep your base environment clean, do all of your work in another environment and don't
0:14
install additional packages in the base environment. If you want a list your environment, use Conda info --envs and when you create new environment,
0:22
give it a name. And in this case, I tell it to use Python 3, which means just use the most recent version of Python.
0:28
You can also specify a specific point releases as well. Once that environment is created, you can activate it and you could install one
0:37
or more packages using the Conda install Command. You can also use pip anaconda environment and I recommend use pip this way
0:46
"python -m pip install <package>. To make sure you're installing in the environment.