Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

ModuleNotFoundError: No module named ‘click’

# If you are using Python 2 (Windows)
pip install click

# if you are using Python 3 (Windows)
pip3 install click

# If the pip is not set as environment varibale PATH
python -m pip install click

# If you are using Python 2 (Linux)
sudo pip install click

# if you are using Python 3 (Linux)
sudo pip3 install click

# In case if you have to easy_install
sudo easy_install -U click

# On Centos
yum install click

# On Ubuntu
sudo apt-get install click

# If you are installing it in Anaconda 
conda install -c conda-forge click
Source by itsmycode.com #
 
PREVIOUS NEXT
Tagged: #No #module #named
ADD COMMENT
Topic
Name
4+7 =