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 :: add all string elements in list python 
Python :: pandas new column with loc 
Python :: openpyxl read excel 
Python :: django docs case when 
Python :: django how to set a navbar active 
Python :: pandas add character to string 
Python :: tkinter boilerplate 
Python :: DtypeWarning: Columns (47) have mixed types.Specify dtype option on import or set low_memory=False 
Python :: python merge pdfs 
Python :: sort a dataframe by a column valuepython 
Python :: columns to dictionary pandas 
Python :: pip version 
Python :: python pandas apply to one column 
Python :: email validation python 
Python :: get list input from user in python 
Python :: traceback python 
Python :: import numpy Illegal instruction (core dumped) 
Python :: replace cell pandas 
Python :: creating a 50 day and 100 day moving average python 
Python :: isinstance numpy array 
Python :: how to write to an output file in pytion 
Python :: python import text file 
Python :: pandas shift column 
Python :: python hour from datetime 
Python :: Traceback (most recent call last): File "/usr/bin/pip", line 9, in <module from pip import main 
Python :: save dataframe to csv without index 
Python :: PySpark null or missing values 
Python :: python map input 
Python :: debug flask powershel 
Python :: run flask application in development mode stack overflow 
ADD CONTENT
Topic
Content
Source link
Name
9+8 =