Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

How to update python using anaconda/conda

# If want to update python type
conda update python

# To update anaconda type 
conda update anaconda

# a) If you want to upgrade between major python version like 3.5 to 3.6, you'll have to do
conda install python=$pythonversion$

# b) Method 2 - Create a new environment (Better Method)
conda create --name py36 python=3.6

# c) To get the absolute latest python(3.6.5 at time of writing)
conda create --name py365 python=3.6.5 --channel conda-forge
Comment

conda update conda

conda update -n base -c defaults conda
Comment

conda python update

conda install python= pythonversion
Comment

PREVIOUS NEXT
Code Example
Python :: get text selenium 
Python :: select non nan values python 
Python :: merge two series by index 
Python :: python if elif else in one line 
Python :: convert list into integer in python 
Python :: python talib install windows 
Python :: how to get unique value of all columns in pandas 
Python :: pandas strip whitespace 
Python :: how to make a program that identifies positives and negatives in python 
Python :: python list comprehension cartesian product 
Python :: python range in reverse order 
Python :: Clear All the Chat in Discord Channel With Bot Python COde 
Python :: remove punctuation python string library 
Python :: how to add two matrix using function in python 
Python :: convert dictionary keys/values to lowercase in python 
Python :: python iterate through string in reverse 
Python :: multiprocessing queue python 
Python :: compress image pillow 
Python :: python time library 
Python :: how to use enumerate in python 
Python :: how to clear ipython console 
Python :: python remove duplicate numbers 
Python :: pandas pivot 
Python :: How to install pandas-profiling 
Python :: hasattr in python 
Python :: inverse list python 
Python :: python find the average of a list 
Python :: plot second y axis matplotlib 
Python :: the boys 
Python :: concat all df in a diction 
ADD CONTENT
Topic
Content
Source link
Name
8+6 =