import matplotlib.pyplot as plt
plt.box(False)
Showing posts with label remove. Show all posts
Showing posts with label remove. Show all posts
How to create & remove another environment on Anaconda (e.g., python 2)
Create another environment on Anaconda,
e.g., if you installed default is python 3, and you want to use python 2:
-conda create -n python2 python=2. 7 anaconda
which will create python 2.7 environment with the name "python2".
Remove a created environment
e.g., removing an environment named "Py3"
- conda env remove -n Py3
Activate and deactivate the environment (env):
-source activate python2
-source deactivate
You can install packages for python 2. * environment with the python2 env being activated
e.g., if you installed default is python 3, and you want to use python 2:
-
Remove a created environment
e.g., removing an environment named "Py3"
- conda env remove -n Py3
Activate and deactivate the environment (env):
-
-
You can install packages for python 2
Use spyder with python 2.7
You can run the spyder app with python 2.7 by activating the python2 env , and type spyder in the command line.
- source activate python2
- spyder
In case the spyder is not automatically installed during creating the env , you should install it first.
- conda install -n python2 spyder
Blogger Tips - Remove "Posted by author name" or time for your post
This is a tip for removing "posted by author name" or time for the post in your blogger.
In [Layout] → [Blog Post] →[Edit] to uncheck the options...
The result after changing the options will be displayed as below:
Subscribe to:
Posts (Atom)