I'm thinking of trying out my favorite data analysis For the time being, I'm going to post the prerequisite environment settings.
Download the python you want to use from this page. https://www.anaconda.com/distribution/
Don't worry, the OS will match the page Then download according to the procedure
Create development environment with environment
Install jupiter note from home and you're done.
However, for some reason a mysterious phenomenon occurred in which the development environment was not created. It took time to make it directly at the terminal,
It seems that it can be introduced from this method as well.
Terminal
$ pip install --upgrade setuptools
$ pip install --upgrade pip
Update pip to the latest state.
$ pip install numpy
$ pip install scipy
$ pip install matplotlib
$ pip install Pillow
$ pip install ipython[all]
Install the required packages.
$ pip install jupyter
Install Jupyter Notebook.
$ jupyter notebook
Run and check in browser
Recommended Posts