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

update anaconda to current version

conda update conda
Comment

PREVIOUS NEXT
Code Example
Python :: how to ask for input in python 
Python :: python copy a 2D list 
Python :: get local timezone python 
Python :: using bs4 to obtain html element by id 
Python :: how to open local html file in python 
Python :: python requests wait for page to load 
Python :: pandas append dictionary to dataframe 
Python :: python create nested directory 
Python :: merge pdf in python 
Python :: print pandas version 
Python :: how to check if an input is a number in python 
Python :: pip version command 
Python :: find duplicated rows with respect to multiple columns pandas 
Python :: Connecting Kaggle to Google Colab 
Python :: age in days to age in years 
Python :: python read xls 
Python :: dictionaries to http data python 
Python :: change value in pandas dataframe cell 
Python :: jupyter notebook show more rows 
Python :: How to find least common multiple of two numbers in Python 
Python :: django.db.backends.mysql install 
Python :: r squared python 
Python :: pandas shift one column 
Python :: python hour from date 
Python :: how to order ints from greatest to least python 
Python :: django install whitenoise 
Python :: PySpark columns with null or missing values 
Python :: how to concat csv files python 
Python :: python detect internet connection 
Python :: rotate labels matplotlib 
ADD CONTENT
Topic
Content
Source link
Name
6+7 =