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 :: python f-string format date 
Python :: .astype datetime 
Python :: get current month py 
Python :: how to plot 2 decimal values in axis python 
Python :: changing dtype of multiple columns to_datetime 
Python :: how to save a model and reuse fast ai 
Python :: python csv write add new line 
Python :: Installing yfinance using pip 
Python :: chrome driver download for selenium python 
Python :: python get dir 
Python :: python sort list of strings numerically 
Python :: selenium python switch to iframe 
Python :: how to return the derivative of a function in python 
Python :: python code to drop columns from dataframe 
Python :: django.db.backends.mysql install 
Python :: how to sum the revenue from every day in a dataframe python 
Python :: get distance between 2 multidimentional point in python 
Python :: python get last modification time of file 
Python :: python minute from datetime 
Python :: discord.py change status 
Python :: import all images from folder python 
Python :: update python 3.10 ubuntu 
Python :: create new thread python 
Python :: update link python is python 3 
Python :: first 2 terms 
Python :: how to count down in python using turtle graphics 
Python :: selenium keep window open python 
Python :: python use .env 
Python :: filter startswith django 
Python :: import models 
ADD CONTENT
Topic
Content
Source link
Name
9+3 =