Только что установил Python 3.7.7. Пишу в строке pip install colorama, мне выбивает ошибку.
>>> pip install colorama
File "<stdin>", line 1
pip install colorama
^
SyntaxError: invalid syntax
задан 24 мар 2020 в 14:49
1
>>> pip install colorama
File "<stdin>", line 1
pip install colorama
^
SyntaxError: invalid syntax
Вы пытаетесь написать команду установки модуля находясь при этом в интерпретаторе Python. Обратите внимание на приглашение >>> — это сигнал к тому, что вы находитесь в интерпретаторе.
Выходите из него и устанавливайте пакет, находясь в консоли.
gil9red
75.1k5 золотых знаков49 серебряных знаков113 бронзовых знаков
ответ дан 25 мар 2020 в 6:13
Simon OsipovSimon Osipov
8917 серебряных знаков11 бронзовых знаков
Установка модулей производится в командной строке (а не в самом Python’e) данной коммандой: pip install имя_модуля. В вашем случае будет pip install colorama. Так же предварительно должен быть установлен сам pip — sudo apt install python-pip (Для Linux) Для Winsows (клик)
Подключение модуля в коде — import имя_модуля, в вашем случае — import colorama
ответ дан 25 мар 2020 в 6:37
h4cktivisth4cktivist
7101 золотой знак7 серебряных знаков20 бронзовых знаков
A common error you may encounter when using Python is modulenotfounderror: no module named ‘colorama’.
This error occurs if you do not install colorama before importing it or install it in the wrong environment.
You can install colorama in Python 3 with python3 -m pip install colorama.
This tutorial goes through the exact steps to troubleshoot this error for the Windows, Mac and Linux operating systems.
Table of contents
- What is ModuleNotFoundError?
- What is colorama?
- Always Use a Virtual Environment to Install Packages
- How to Install colorama on Windows Operating System
- How to Install colorama on Mac Operating System using pip
- How to Install colorama on Linux Operating Systems
- Installing pip for Ubuntu, Debian, and Linux Mint
- Installing pip for CentOS 8 (and newer), Fedora, and Red Hat
- Installing pip for CentOS 6 and 7, and older versions of Red Hat
- Installing pip for Arch Linux and Manjaro
- Installing pip for OpenSUSE
- colorama installation on Linux with Pip
- Installing colorama Using Anaconda
- Check colorama Version
- Using colorama Example
- Summary
What is ModuleNotFoundError?
The ModuleNotFoundError occurs when the module you want to use is not present in your Python environment. There are several causes of the modulenotfounderror:
The module’s name is incorrect, in which case you have to check the name of the module you tried to import. Let’s try to import the re module with a double e to see what happens:
import ree
--------------------------------------------------------------------------- ModuleNotFoundError Traceback (most recent call last) 1 import ree ModuleNotFoundError: No module named 'ree'
To solve this error, ensure the module name is correct. Let’s look at the revised code:
import re print(re.__version__)
2.2.1
You may want to import a local module file, but the module is not in the same directory. Let’s look at an example package with a script and a local module to import. Let’s look at the following steps to perform from your terminal:
mkdir example_package cd example_package mkdir folder_1 cd folder_1 vi module.py
Note that we use Vim to create the module.py file in this example. You can use your preferred file editor, such as Emacs or Atom. In module.py, we will import the re module and define a simple function that prints the re version:
import re
def print_re_version():
print(re.__version__)
Close the module.py, then complete the following commands from your terminal:
cd ../ vi script.py
Inside script.py, we will try to import the module we created.
import module
if __name__ == '__main__':
mod.print_re_version()
Let’s run python script.py from the terminal to see what happens:
Traceback (most recent call last):
File "script.py", line 1, in ≺module≻
import module
ModuleNotFoundError: No module named 'module'
To solve this error, we need to point to the correct path to module.py, which is inside folder_1. Let’s look at the revised code:
import folder_1.module as mod
if __name__ == '__main__':
mod.print_re_version()
When we run python script.py, we will get the following result:
2.2.1
You can also get the error by overriding the official module you want to import by giving your module the same name.
Lastly, you can encounter the modulenotfounderror when you import a module that is not installed in your Python environment.
What is colorama?
colorama is a Python library for producing coloured terminal text and cursor positioning.
The simplest way to install colorama is to use the package manager for Python called pip. The following installation instructions are for the major Python version 3.
Always Use a Virtual Environment to Install Packages
It is always best to install new libraries within a virtual environment. You should not install anything into your global Python interpreter when you develop locally. You may introduce incompatibilities between packages, or you may break your system if you install an incompatible version of a library that your operating system needs. Using a virtual environment helps compartmentalize your projects and their dependencies. Each project will have its environment with everything the code needs to run. Most ImportErrors and ModuleNotFoundErrors occur due to installing a library for one interpreter and trying to use the library with another interpreter. Using a virtual environment avoids this. In Python, you can use virtual environments and conda environments. We will go through how to install colorama with both.
How to Install colorama on Windows Operating System
First, you need to download and install Python on your PC. Ensure you select the install launcher for all users and Add Python to PATH checkboxes. The latter ensures the interpreter is in the execution path. Pip is automatically on Windows for Python versions 2.7.9+ and 3.4+.
You can check your Python version with the following command:
python3 --version
You can install pip on Windows by downloading the installation package, opening the command line and launching the installer. You can install pip via the CMD prompt by running the following command.
python get-pip.py
You may need to run the command prompt as administrator. Check whether the installation has been successful by typing.
pip --version
virtualenv env
You can activate the environment by typing the command:
envScriptsactivate
You will see “env” in parenthesis next to the command line prompt. You can install colorama within the environment by running the following command from the command prompt.
python3 -m pip install colorama
We use python -m pip to execute pip using the Python interpreter we specify as Python. Doing this helps avoid ImportError when we try to use a package installed with one version of Python interpreter with a different version. You can use the command which python to determine which Python interpreter you are using.
How to Install colorama on Mac Operating System using pip
Open a terminal by pressing command (⌘) + Space Bar to open the Spotlight search. Type in terminal and press enter. To get pip, first ensure you have installed Python3:
python3 --version
Python 3.8.8
Download pip by running the following curl command:
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
The curl command allows you to specify a direct download link. Using the -o option sets the name of the downloaded file.
Install pip by running:
python3 get-pip.py
To install colorama, first create the virtual environment:
python3 -m venv env
Then activate the environment using:
source env/bin/activate
You will see “env” in parenthesis next to the command line prompt. You can install colorama within the environment by running the following command from the command prompt.
python3 -m pip install colorama
How to Install colorama on Linux Operating Systems
All major Linux distributions have Python installed by default. However, you will need to install pip. You can install pip from the terminal, but the installation instructions depend on the Linux distribution you are using. You will need root privileges to install pip. Open a terminal and use the commands relevant to your Linux distribution to install pip.
Installing pip for Ubuntu, Debian, and Linux Mint
sudo apt install python-pip3
Installing pip for CentOS 8 (and newer), Fedora, and Red Hat
sudo dnf install python-pip3
Installing pip for CentOS 6 and 7, and older versions of Red Hat
sudo yum install epel-release sudo yum install python-pip3
Installing pip for Arch Linux and Manjaro
sudo pacman -S python-pip
Installing pip for OpenSUSE
sudo zypper python3-pip
colorama installation on Linux with Pip
To install colorama, first create the virtual environment:
python3 -m venv env
Then activate the environment using:
source env/bin/activate
You will see “env” in parenthesis next to the command line prompt. You can install colorama within the environment by running the following command from the command prompt.
Once you have activated your virtual environment, you can install colorama using:
python3 -m pip install colorama
Installing colorama Using Anaconda
Anaconda is a distribution of Python and R for scientific computing and data science. You can install Anaconda by going to the installation instructions. Once you have installed Anaconda, you can create a virtual environment and install colorama.
To create a conda environment you can use the following command:
conda create -n project python=3.8
You can specify a different Python 3 version if you like. Ideally, choose the latest version of Python. Next, you will activate the project container. You will see “project” in parentheses next to the command line prompt.
source activate project
Now you’re ready to install colorama using conda.
Once you have installed Anaconda and created your conda environment, you can install colorama using the following command:
conda install -c anaconda colorama
Check colorama Version
Once you have successfully installed colorama, you can check its version. If you used pip to install colorama, you can use pip show from your terminal.
python3 -m pip show colorama
Name: colorama Version: 0.4.4 Summary: Cross-platform colored terminal text. Home-page: https://github.com/tartley/colorama
Second, within your python program, you can import colorama and then reference the __version__ attribute:
import colorama print(colorama.__version__)
0.4.4
If you used conda to install colorama, you could check the version using the following command:
conda list -f colorama
# Name Version Build Channel colorama 0.4.4 pyhd3eb1b0_0 anaconda
Using colorama Example
from colorama import Fore, Back, Style
print(Fore.RED + 'some red text')
print(Back.GREEN + 'and with a green background')
print(Style.DIM + 'and in dim text')
print(Style.RESET_ALL)
print('back to normal now')

Summary
Congratulations on reading to the end of this tutorial.
Go to the online courses page on Python to learn more about Python for data science and machine learning.
For further reading on missing modules in Python, go to the article:
- How to Solve ModuleNotFoundError: no module named ‘plotly’.
- How to Solve Python ModuleNotFoundError: no module named ‘psycopg2’.
- How to Solve Python ModuleNotFoundError: no module named ‘seaborn’.
Have fun and happy researching!
I downloaded the colorama module for python and I double clicked the setup.py. The screen flashed, but when I try to import the module, it always says ‘No Module named colorama’
I copied and pasted the folder under ‘C:Python26Libsite-packages’ and tried to run the setup from there. Same deal. Am I doing something wrong?
Thanks,
Mike
enzo
9,6183 gold badges14 silver badges38 bronze badges
asked Mar 23, 2012 at 21:27
7
Installing with pip is almost always the way to go. It will handle downloading the package for you, as well as any dependencies. If you don’t have pip, see http://www.pip-installer.org/en/latest/installing.html
Then
pip install colorama
or
sudo pip install colorama
Ba-boom! Done.
answered Jan 29, 2014 at 0:26
Travis BearTravis Bear
12.4k6 gold badges40 silver badges51 bronze badges
1
Python packages are installed using setup.py by entering the following command from a command line:
python setup.py install
answered Mar 23, 2012 at 21:30
TJDTJD
11.7k1 gold badge25 silver badges34 bronze badges
4
I just a weird problem with awscli and colorama. Searching for an answer, I came here. The solution was:
$ sudo -H pip uninstall colorama
$ sudo -H pip install colorama
answered Nov 29, 2017 at 14:48
Martin ThomaMartin Thoma
118k152 gold badges590 silver badges910 bronze badges
1
Run the following command in Google shell:
sudo pip3 install colorama
![]()
d1sh4
1,6754 silver badges21 bronze badges
answered Aug 19, 2021 at 8:52
if you have easy_install (in most case that will work)
sudo easy_install -U colorama
if you installed pip
sudo pip install -U colorama
answered Aug 23, 2018 at 15:26
SaPPiSaPPi
13 bronze badges
Re-installing colorama might not work right away. If there is a colorama .egg in site-packages, you need to remove that file first and then pip install colorama.
answered Aug 23, 2018 at 16:43
![]()
I have also experienced this problem. Following the instructions to install sudo pip install colorama I receive the message:
Requirement already satisfied: colorama in /usr/lib/python2.7/dist-packages.
The problem for me is that I am using python3 in my header code #!usr/bin/env python3.
Changing this to#!usr/bin/env python works — sorry, I don’t know how to get it to work with python 3!
![]()
answered Feb 13, 2019 at 11:34
If you got the below error on ubuntu 18.04 ModuleNotFoundError: No module named 'rsa', then try:
pip3 install colorama
![]()
Bhargav Rao
48.6k28 gold badges123 silver badges139 bronze badges
answered Feb 19, 2019 at 9:34
![]()
0
For Windows, you can use this in the command prompt:
python get-pip.py
pip install colorama
pip uninstall colorama
You should also check the official site out: Installing Python Modules
answered Dec 3, 2019 at 3:07
![]()
You can install using the following command (For Ubuntu os ):
sudo -H python3 -m pip install colorama
The above command solved the problem in my scenario.
answered Apr 10, 2020 at 15:14
Pavan YogiPavan Yogi
1502 silver badges6 bronze badges
I downloaded the colorama module for python and I double clicked the setup.py. The screen flashed, but when I try to import the module, it always says ‘No Module named colorama’
I copied and pasted the folder under ‘C:Python26Libsite-packages’ and tried to run the setup from there. Same deal. Am I doing something wrong?
Thanks,
Mike
enzo
9,6183 gold badges14 silver badges38 bronze badges
asked Mar 23, 2012 at 21:27
7
Installing with pip is almost always the way to go. It will handle downloading the package for you, as well as any dependencies. If you don’t have pip, see http://www.pip-installer.org/en/latest/installing.html
Then
pip install colorama
or
sudo pip install colorama
Ba-boom! Done.
answered Jan 29, 2014 at 0:26
Travis BearTravis Bear
12.4k6 gold badges40 silver badges51 bronze badges
1
Python packages are installed using setup.py by entering the following command from a command line:
python setup.py install
answered Mar 23, 2012 at 21:30
TJDTJD
11.7k1 gold badge25 silver badges34 bronze badges
4
I just a weird problem with awscli and colorama. Searching for an answer, I came here. The solution was:
$ sudo -H pip uninstall colorama
$ sudo -H pip install colorama
answered Nov 29, 2017 at 14:48
Martin ThomaMartin Thoma
118k152 gold badges590 silver badges910 bronze badges
1
Run the following command in Google shell:
sudo pip3 install colorama
![]()
d1sh4
1,6754 silver badges21 bronze badges
answered Aug 19, 2021 at 8:52
if you have easy_install (in most case that will work)
sudo easy_install -U colorama
if you installed pip
sudo pip install -U colorama
answered Aug 23, 2018 at 15:26
SaPPiSaPPi
13 bronze badges
Re-installing colorama might not work right away. If there is a colorama .egg in site-packages, you need to remove that file first and then pip install colorama.
answered Aug 23, 2018 at 16:43
![]()
I have also experienced this problem. Following the instructions to install sudo pip install colorama I receive the message:
Requirement already satisfied: colorama in /usr/lib/python2.7/dist-packages.
The problem for me is that I am using python3 in my header code #!usr/bin/env python3.
Changing this to#!usr/bin/env python works — sorry, I don’t know how to get it to work with python 3!
![]()
answered Feb 13, 2019 at 11:34
If you got the below error on ubuntu 18.04 ModuleNotFoundError: No module named 'rsa', then try:
pip3 install colorama
![]()
Bhargav Rao
48.6k28 gold badges123 silver badges139 bronze badges
answered Feb 19, 2019 at 9:34
![]()
0
For Windows, you can use this in the command prompt:
python get-pip.py
pip install colorama
pip uninstall colorama
You should also check the official site out: Installing Python Modules
answered Dec 3, 2019 at 3:07
![]()
You can install using the following command (For Ubuntu os ):
sudo -H python3 -m pip install colorama
The above command solved the problem in my scenario.
answered Apr 10, 2020 at 15:14
Pavan YogiPavan Yogi
1502 silver badges6 bronze badges
Also experiencing this.
Here is a log from tox running on the windows-latest environment via github actions:
Collecting colorama<0.5.0,>=0.4.1; sys_platform == "win32"
Downloading https://files.pythonhosted.org/packages/cb/fe/bfc4d807aa43a183ab387340f524a0bb086624f2c5935bd08e647b54b269/colorama-0.4.2.tar.gz
ERROR: Command errored out with exit status 1:
command: 'D:amicropy-climicropy-cli.toxpy37Scriptspython.EXE' -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\Users\RUNNER~1\AppData\Local\Temp\pip-install-jdcxa2nb\colorama\setup.py'"'"'; __file__='"'"'C:\Users\RUNNER~1\AppData\Local\Temp\pip-install-jdcxa2nb\colorama\setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'rn'"'"', '"'"'n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:UsersRUNNER~1AppDataLocalTemppip-install-jdcxa2nbcoloramapip-egg-info'
cwd: C:UsersRUNNER~1AppDataLocalTemppip-install-jdcxa2nbcolorama
Complete output (7 lines):
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "C:UsersRUNNER~1AppDataLocalTemppip-install-jdcxa2nbcoloramasetup.py", line 36, in <module>
long_description=read_file('README.rst'),
File "C:UsersRUNNER~1AppDataLocalTemppip-install-jdcxa2nbcoloramasetup.py", line 18, in read_file
with open(os.path.join(os.path.dirname(__file__), path)) as fp:
FileNotFoundError: [Errno 2] No such file or directory: 'C:\Users\RUNNER~1\AppData\Local\Temp\pip-install-jdcxa2nb\colorama\README.rst'
----------------------------------------
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
Link to full action
I downloaded the archive from the link, the README.rst is indeed not present.
Quick Fix: Python raises the ImportError: No module named 'colorama' when it cannot find the library colorama. The most frequent source of this error is that you haven’t installed colorama explicitly with pip install colorama. Alternatively, you may have different Python versions on your computer, and colorama is not installed for the particular version you’re using.
Problem Formulation
You’ve just learned about the awesome capabilities of the colorama library and you want to try it out, so you start your code with the following statement:
import colorama
This is supposed to import the Pandas library into your (virtual) environment. However, it only throws the following ImportError: No module named colorama:
>>> import colorama
Traceback (most recent call last):
File "<pyshell#6>", line 1, in <module>
import colorama
ModuleNotFoundError: No module named 'colorama'
Solution Idea 1: Install Library colorama
The most likely reason is that Python doesn’t provide colorama in its standard library. You need to install it first!
Before being able to import the Pandas module, you need to install it using Python’s package manager pip. Make sure pip is installed on your machine.
To fix this error, you can run the following command in your Windows shell:
$ pip install colorama
This simple command installs colorama in your virtual environment on Windows, Linux, and MacOS. It assumes that your pip version is updated. If it isn’t, use the following two commands in your terminal, command line, or shell (there’s no harm in doing it anyways):
$ python -m pip install --upgrade pip $ pip install pandas
💡 Note: Don’t copy and paste the $ symbol. This is just to illustrate that you run it in your shell/terminal/command line.
Solution Idea 2: Fix the Path
The error might persist even after you have installed the colorama library. This likely happens because pip is installed but doesn’t reside in the path you can use. Although pip may be installed on your system the script is unable to locate it. Therefore, it is unable to install the library using pip in the correct path.
To fix the problem with the path in Windows follow the steps given next.
Step 1: Open the folder where you installed Python by opening the command prompt and typing where python

Step 2: Once you have opened the Python folder, browse and open the Scripts folder and copy its location. Also verify that the folder contains the pip file.

Step 3: Now open the Scripts directory in the command prompt using the cd command and the location that you copied previously.

Step 4: Now install the library using pip install colorama command. Here’s an analogous example:

After having followed the above steps, execute our script once again. And you should get the desired output.
Other Solution Ideas
- The
ModuleNotFoundErrormay appear due to relative imports. You can learn everything about relative imports and how to create your own module in this article. - You may have mixed up Python and pip versions on your machine. In this case, to install
coloramafor Python 3, you may want to trypython3 -m pip install coloramaor evenpip3 install coloramainstead ofpip install colorama - If you face this issue server-side, you may want to try the command
pip install --user colorama - If you’re using Ubuntu, you may want to try this command:
sudo apt install colorama - You can check out our in-depth guide on installing
coloramahere. - You can also check out this article to learn more about possible problems that may lead to an error when importing a library.
Understanding the “import” Statement
import colorama
In Python, the import statement serves two main purposes:
- Search the module by its name, load it, and initialize it.
- Define a name in the local namespace within the scope of the
importstatement. This local name is then used to reference the accessed module throughout the code.
What’s the Difference Between ImportError and ModuleNotFoundError?
What’s the difference between ImportError and ModuleNotFoundError?
Python defines an error hierarchy, so some error classes inherit from other error classes. In our case, the ModuleNotFoundError is a subclass of the ImportError class.
You can see this in this screenshot from the docs:

You can also check this relationship using the issubclass() built-in function:
>>> issubclass(ModuleNotFoundError, ImportError) True
Specifically, Python raises the ModuleNotFoundError if the module (e.g., colorama) cannot be found. If it can be found, there may be a problem loading the module or some specific files within the module. In those cases, Python would raise an ImportError.
If an import statement cannot import a module, it raises an ImportError. This may occur because of a faulty installation or an invalid path. In Python 3.6 or newer, this will usually raise a ModuleNotFoundError.
Related Videos
The following video shows you how to resolve the ImportError:
How to Fix : “ImportError: Cannot import name X” in Python?
The following video shows you how to import a function from another folder—doing it the wrong way often results in the ModuleNotFoundError:
How to Call a Function from Another File in Python?
How to Fix “ModuleNotFoundError: No module named ‘colorama’” in PyCharm
If you create a new Python project in PyCharm and try to import the colorama library, it’ll raise the following error message:
Traceback (most recent call last):
File "C:/Users/.../main.py", line 1, in <module>
import colorama
ModuleNotFoundError: No module named 'colorama'
Process finished with exit code 1
The reason is that each PyCharm project, per default, creates a virtual environment in which you can install custom Python modules. But the virtual environment is initially empty—even if you’ve already installed colorama on your computer!
Here’s a screenshot exemplifying this for the pandas library. It’ll look similar for colorama.

The fix is simple: Use the PyCharm installation tooltips to install Pandas in your virtual environment—two clicks and you’re good to go!
First, right-click on the pandas text in your editor:

Second, click “Show Context Actions” in your context menu. In the new menu that arises, click “Install Pandas” and wait for PyCharm to finish the installation.
The code will run after your installation completes successfully.
As an alternative, you can also open the Terminal tool at the bottom and type:
$ pip install colorama
If this doesn’t work, you may want to set the Python interpreter to another version using the following tutorial: https://www.jetbrains.com/help/pycharm/2016.1/configuring-python-interpreter-for-a-project.html
You can also manually install a new library such as colorama in PyCharm using the following procedure:
- Open
File > Settings > Projectfrom the PyCharm menu. - Select your current project.
- Click the
Python Interpretertab within your project tab. - Click the small
+symbol to add a new library to the project. - Now type in the library to be installed, in your example Pandas, and click
Install Package. - Wait for the installation to terminate and close all popup windows.
Here’s an analogous example:

Here’s a full guide on how to install a library on PyCharm.
- How to Install a Library on PyCharm

While working as a researcher in distributed systems, Dr. Christian Mayer found his love for teaching computer science students.
To help students reach higher levels of Python success, he founded the programming education website Finxter.com. He’s author of the popular programming book Python One-Liners (NoStarch 2020), coauthor of the Coffee Break Python series of self-published books, computer science enthusiast, freelancer, and owner of one of the top 10 largest Python blogs worldwide.
His passions are writing, reading, and coding. But his greatest passion is to serve aspiring coders through Finxter and help them to boost their skills. You can join his free email academy here.
|
0 / 0 / 0 Регистрация: 25.01.2020 Сообщений: 3 |
|
|
1 |
|
|
25.01.2020, 15:26. Показов 26160. Ответов 12
Не работает pip install в Python 3.8.1 SyntaxError: invalid syntax
__________________
0 |
|
Programming Эксперт 94731 / 64177 / 26122 Регистрация: 12.04.2006 Сообщений: 116,782 |
25.01.2020, 15:26 |
|
Ответы с готовыми решениями: Не работает команда pip Не работает pip Не работает Pip
12 |
|
5403 / 3827 / 1214 Регистрация: 28.10.2013 Сообщений: 9,554 Записей в блоге: 1 |
|
|
25.01.2020, 15:53 |
2 |
|
пишу в cmd Ты пишешь в консоли Python, а не cmd.
1 |
|
0 / 0 / 0 Регистрация: 25.01.2020 Сообщений: 3 |
|
|
25.01.2020, 15:56 [ТС] |
3 |
|
как говорится, пока сам не начнёшь разбираться…
0 |
|
5403 / 3827 / 1214 Регистрация: 28.10.2013 Сообщений: 9,554 Записей в блоге: 1 |
|
|
25.01.2020, 16:16 |
4 |
|
в общем если вам пишет invalid syntax, то проверьте PATH Неверно. SyntaxError: invalid syntax это ошибка интерпретатора. К PATH никакого отношения не имеет. Добавлено через 1 минуту
ищите в папку scripts там где установлен python, в этой папке найдите файл pip, установите его и должно всё заработать. Если pip там есть, то ничего устанавливать уже не нужно.
2 |
|
0 / 0 / 0 Регистрация: 25.01.2020 Сообщений: 3 |
|
|
26.01.2020, 12:30 [ТС] |
5 |
|
ну как так, «ты пишешь не в cmd» а комбинация вин+R и последующее написание в открывшимся окне «cmd» и нажатие enter что открывает? «если pip там есть, то ничего устанавливать не нужно» — как же мне тогда это помогло? то есть пока я не открыл файл pip, у меня на команду pip install «какая то библиотека» был ответ invalid syntax, то после у меня заработала команда pip и я смог устанавливать интересующие меня библиотеки. чудеса… но я, все равно, все не правильно делаю и пишу не cmd))) Миниатюры
0 |
|
5403 / 3827 / 1214 Регистрация: 28.10.2013 Сообщений: 9,554 Записей в блоге: 1 |
|
|
26.01.2020, 16:09 |
6 |
|
Как же тяжело учить нубов…. Ну а далее — методом тыка ты нашел файл pip, открыл cmd в каталоге Scripts и ввел команду. Это — правильно. Но описал все это ты неправильно, чем вводишь в заблуждение других. P.S. Python нужно было сразу ставить с добавлением его в PATH (для этого есть специальная галочка при установке). Тогда нет необходимости переходить в каталог Scripts для запуска pip.
3 |
|
1 / 1 / 0 Регистрация: 20.11.2020 Сообщений: 1 |
|
|
20.11.2020, 05:50 |
7 |
|
1 |
|
0 / 0 / 0 Регистрация: 09.07.2021 Сообщений: 19 |
|
|
20.12.2021, 14:48 |
8 |
|
А что мне делать, если я открываю cmd и пишу строку- pip install pytelegrambotapi.
0 |
|
Автоматизируй это!
6430 / 4129 / 1133 Регистрация: 30.03.2015 Сообщений: 12,222 Записей в блоге: 29 |
|
|
20.12.2021, 15:02 |
9 |
|
Haker_228, значит ты не хакер и как то криво установил питон (пип ставится вместе с ним)
0 |
|
0 / 0 / 0 Регистрация: 09.07.2021 Сообщений: 19 |
|
|
20.12.2021, 15:05 |
10 |
|
Welemir1, спасибо за комментарий, но лучше бы помог, а не сидел и умничал.
0 |
|
Автоматизируй это!
6430 / 4129 / 1133 Регистрация: 30.03.2015 Сообщений: 12,222 Записей в блоге: 29 |
|
|
20.12.2021, 15:11 |
11 |
|
Haker_228, я тебе и помог — установи питон, только вдумчиво. Может вот это поможет Не по теме:
сидел и умничал. ну ты же не сдержался, пока ник придумывал и я вот не устоял тоже. 1-1.
0 |
|
0 / 0 / 0 Регистрация: 09.07.2021 Сообщений: 19 |
|
|
20.12.2021, 15:15 |
12 |
|
Спасибо, но я так назвал себя в честь ника нашего учителя по информатике на сайте знакомств у него был такой ник.
0 |
|
533 / 438 / 47 Регистрация: 17.07.2013 Сообщений: 2,236 |
|
|
21.12.2021, 10:01 |
13 |
|
ХЕЕЕЕЕЛПППП, помогите Иногда вместо pip помогает conda, только ей пользоваться надо осторожно
0 |
|
IT_Exp Эксперт 87844 / 49110 / 22898 Регистрация: 17.06.2006 Сообщений: 92,604 |
21.12.2021, 10:01 |
|
Помогаю со студенческими работами здесь Не работает pip
Проблемы с PIP AdSense, PIP З.Ы. Кто не знает: PIP — "Payment in progress", "платеж в процессе". Искать еще темы с ответами Или воспользуйтесь поиском по форуму: 13 |
7 ответов
Пакеты Python устанавливаются с помощью setup.py, введя следующую команду из командной строки:
python setup.py install
TJD
23 март 2012, в 21:53
Поделиться
Установка с помощью пипса — это почти всегда путь. Он будет обрабатывать загрузку пакета для вас, а также любые зависимости. Если у вас нет пипа, см. http://www.pip-installer.org/en/latest/installing.html
Тогда
pip install colorama
или
sudo pip install colorama
Ба-бах! Готово.
Travis Bear
29 янв. 2014, в 01:07
Поделиться
Я просто странная проблема с awscli и colorama. В поисках ответа я пришел сюда. Решение было:
$ sudo -H pip uninstall colorama
$ sudo -H pip install colorama
Martin Thoma
29 нояб. 2017, в 15:55
Поделиться
Если вы получили приведенную ниже ошибку в Ubuntu 18.04 ModuleNotFoundError: No module named 'rsa', попробуйте:
pip3 install colorama
Venu Pagidi
19 фев. 2019, в 10:40
Поделиться
Я также испытал эту проблему. Следуя инструкциям по установке sudo pip install colorama я получаю сообщение:
Требование уже выполнено: колорама в /usr/lib/python2.7/dist-packages.
Проблема для меня в том, что я использую python3 в своем коде заголовка #!usr/bin/env python3. Изменение на #!usr/bin/env python работает — извините, я не знаю, как заставить его работать с python 3!
Steven H
13 фев. 2019, в 13:28
Поделиться
Переустановка колорамы может не сработать сразу. Если в пакетах site-packages есть колорама .egg, вам нужно сначала удалить этот файл, а затем pip install colorama.
Raul Santelices
23 авг. 2018, в 17:52
Поделиться
если у вас есть easy_install (в большинстве случаев это будет работать)
sudo easy_install -U colorama
если вы установили пип
sudo pip install -U colorama
SaPPi
23 авг. 2018, в 16:44
Поделиться
Ещё вопросы
- 1Vector2 приведен к Vector3 в C # / Unity3D
- 1Приложения HTML5 доступны в Android Marketplace?
- 0Ошибка загрузки PHP и SQL
- 0Google App Engine и Flask: обслуживание файлов
- 1откройте PDF в браузере, используя Spring и Java
- 1Elasticsearch вызывает java.lang.LinkageError с помощью javax / servlet / FilterConfig на Tomcat 7
- 0Pretty-распечатать исходный код Lua во внешнем файле, не встраивая его в HTML-файл
- 0Обновление sql на основе темы письма
- 1Eclipse — SharedClasses имеет ошибки пути сборки
- 0Как разорвать связь клиента и сервера?
- 0PHP JSON прочитать файл
- 0Как показать не популярные флажки при нажатии кнопки в угловых?
- 1Scrapy CrawlSpider не выходит
- 0Angular-gridster не работает на маленьких экранах
- 1Javascript не может получить данные с моего сервера
- 1OAuth для Microsoft Dynamics Маркетинг OData Feed
- 0Где я могу разместить HTML-шаблон для Angular UI Modal?
- 0Затмение перестало компилироваться после Mavericks
- 0Как выбрать HTML <вариант>, где текст = Вашингтон
- 1Как получить имя свойства при использовании библиотеки filehelper
- 1TypeError с BallTree от scikit-learn
- 1Не все пути кода возвращают значение для массива
- 0Неверная левая часть в назначении на код JavaScript
- 0Неизвестная ошибка столбца в хранимой функции mysql
- 0Интерпретатор создает копию объекта в трассировке
- 0Почему мне нужно обещание обратного вызова из запроса $ ресурса
- 0Ошибка типа: $ http.movie не является функцией
- 0Сброс фильтров столбцов HTML-таблицы по клику
- 1TCP слушатель получает только первое сообщение
- 1Проблема игры на платформе Python при переходе на следующий уровень
- 0Не могу установить Composer на Mac (Yosemite)
- 0Как найти Положение дочернего элемента (число) внутри родителя в HTML, используя jquery
- 0Функция маршрутизации и перенаправления ZF2 в контроллере
- 0Передача информации в функцию обработки ответов jQuery ajax
- 1Запланированная работа в многоузловой среде
- 0динамический флажок андроид
- 0PHP получает данные из jquery
- 0AngularJS операции с директивными атрибутами
- 1Блок AsynchronousServerSocketChannel, наконец, никогда не выполняется
- 1Как я могу использовать Tuple <> для возврата значения вместо использования аргумента ‘out’ в методе?
- 0Jquery с многоуровневым массивом данных JSON
- 1Как получить доступ к каталогу ресурсов для вызывающей программы на Java
- 0Как отобразить данные множественного выбора массива в поле выбора в angularjs в остальные API
- 0Имеют ли угловые выражения максимальную длину?
- 1Ролевая авторизация в asp.net
- 0Возвращаемое значение для функции внутри функции slideUp ()
- 1Прото-сообщение, требующее использования параметра ref при попытке создать экземпляр
- 0изменить имя базы данных в Zend Framework
- 0показ одной опции в один div после двух выбранных выпадающих
- 1Связывание действий внутри вкладки
Не работает PIP