Почему нет интерпретатора в pycharm
Перейти к содержимому

Почему нет интерпретатора в pycharm

  • автор:

PyCharm Community. Основы работы

PyCharm – это одна из наиболее удобных сред разработки на языке Python. Существует в двух версиях:

  • PyCharm Community – свободно-распространяемая версия с открытым исходным кодом.
  • PyCharm Professional – проприетарная платная версия с триальным периодом.

В версии Community вы сможете программировать в основном на Python, в Professional – также на смежных языках (веб-программирование), использовать множество фреймворков.

В данном уроке мы рассмотрим создание проекта в PyCharm Community, первоначальную настройку среды и некоторые особенности работы в ней. Полную документацию смотрите на сайте разработчика данной IDE.

PyCharm не содержит самого интерпретатора Python, поэтому последний уже должен быть установлен в системе. В дистрибутивах Linux обычно это так и есть: пакет интерпретатора Python устанавливается вместе с операционной системой. Пользователи Windows, если еще не сделали этого, могут скачать интерпретатор Питона с официального сайта: https://www.python.org/downloads/

В Linux установку PyCharm Community лучше выполнить с помощью менеджера пакетов вашей операционной системы. Если такой возможности нет или это не ваш способ, то загрузив с официального сайта JetBrains и распаковав установочный пакет, найдите в нем файл Install***.txt или подобный, в котором описано, что надо сделать, чтобы установить и запустить среду разработки.

В этом случае процесс может выглядеть следующим образом:

    Перемещаем каталог с файлами среды разработки в директорию /opt командой

sudo mv pycharm-community-2022.3.3/ /opt/
cd /opt/pycharm-community-2022.3.3/bin/
./pycharm.sh

При первом запуске PyCharm будет предложено принять пользовательское соглашение, также появится окно с вопросом отправлять или нет анонимные данные о том, как вы используете продукт.

Далее появится приветственное окно, в котором среди прочего предлагается создать новый проект.

Приветственное окно PyCharm

При создании проекта появляется диалоговое окно, в котором следует указать имя проекта и адрес его родительского каталога. Можно согласиться с заданными по умолчанию вариантами.

Имя и каталог проекта

По-умолчанию предлагается использовать виртуальное окружение (выбран вариант Project venv ). Однако если вы только учитесь языку Питона и никаких дополнительных библиотек устанавливать не планируете, то во избежание большого количества непонятных файлов в каталоге проекта, может быть целесообразно отказаться от создания виртуальной среды Python. Для этого надо переключиться на Custom environment , там в качестве окружения выбрать Select existing , тип ‒ Python и указать путь до установленного в операционной системе интерпретатора.

Настройка виртуального окружения

Далее запустится среда разработки, в ней будет открыт только что созданный проект.

Открытый в PyCharm проект

Слева на панели Project управляют файлами проекта. На скрине выше в папке pythonProject нет ни одного файла (у вас там уже может быть каталог с виртуальным окружением). Чтобы создать файл, в котором будет написана программа на Python, кликнем по этой папке правой кнопкой мыши. В контекстном меню выбираем New → Python File .

Создание файла в PyCharm

После этого в центральной части среды разработки появится небольшое окно, в которое вписываем имя файла.

Указание имени и типа файла

Нажав Enter , вы увидите файл на панели Project . Также он будет открыт в центральной части окна PyCharm.

После того как исходный код написан, чтобы запустить программу, надо нажать Shift + F10 (возможно для первого запуска понадобится нажать Ctrl + Shift + F10 ). Внизу раскроется вкладка Run , в которой отобразиться результат выполнения.

Запуск программы в PyCharm, панель Run

Иногда удобнее, чтобы панель выполнения программы открывалась не снизу, а, например, справа. В этом случае в настройках панели (справа значок с тремя вертикальными точками) следует выбрать Move to → Right Top .

Как изменить положение панели в PyCharm

После этого интерфейс среды разработки примет такой вид:

Панель выполнения программы справа

Внешний вид среды и множество других ее свойств, поведение настраиваются в окне Settings (меню File → Settings ). На скрине ниже показано, как изменить темную тему оформления PyCharm на светлую.

Изменение темы оформления в PyCharm

Бывает удобно менять размер шрифта в редакторе кода, зажав Ctrl и прокручивая колесо мыши. Чтобы воспользоваться этой возможностью в PyCharm, надо установить соответствующий флажок в разделе Editor → General окна настроек.

Включение в PyCharm возможности менять размер шрифта прокруткой колеса мыши с зажатым Ctrl

Изменить по-умолчанию заданный размер шрифта можно в разделе Editor → Font .

Установка размера шрифта в редакторе кода PyCharm

В PyCharm встроена интерактивная консоль, в которой выполняют небольшие фрагменты кода без создания файлов.

Python Console

Если в дистрибутивах Linux вы устанавливали среду разработки самостоятельно, а не через менеджер пакетов, то значок PyCharm скорее всего не появится в системном меню. И для последующего запуска среды вам снова надо будет обращаться к файлу pycharm.sh. Чтобы создать ярлык на приложение, в меню Tools поищите пункт Create Desktop Entry… .

Теперь рассмотрим некоторые особенности работы в PyCharm, точнее в его редакторе кода. Многие из них универсальны, характерны для других сред разработки. Так нажатие Ctrl + D дублирует строку, в которой находится курсор.

Ctrl + C копирует строку, в которой находится курсор, выделять строку при этом не надо. Потом копию можно вставить в любое место программы командой Ctrl + V .

Если надо скопировать или продублировать участок в несколько строк, его следует выделить.

Выделенный участок можно сдвинуть вправо (сделать вложенным), нажав Tab . Смещение влево (на внешний уровень) выполняется комбинацией Shift + Tab .

Поднять/опустить (поменять местами с предшествующей/нижестоящей) строку или выделенный участок можно с помощью сочетаний Shift + Ctrl + стрелка вверх или стрелка вниз клавиатуры.

Примеры решения и дополнительные уроки в pdf-версии курса

X Скрыть Наверх

Python. Введение в программирование

Не работает интерпретатор в pycharm?

На компьютере установлен python 3.7.2 самый последний на виндовс 7, а почему то подключается к проекту в pycharm 3.11 а мне надо тот, что делать? Из-за него ничего не получается делать639c09f9a5672340793584.png 639c0a00e1d76782897608.png

  • Вопрос задан более года назад
  • 216 просмотров

Решения вопроса 0

Ответы на вопрос 0

Ваш ответ на вопрос

Вопрос закрыт для ответов и комментариев

Потому что уже есть похожий вопрос.

pycharm

  • PyCharm

Как убрать предупреждение «Could not find platform independent libraries»?

  • 1 подписчик
  • вчера
  • 32 просмотра

Configure a Python interpreter

To work with your Python code in PyCharm, you need to configure at least one Python interpreter. You can use a system interpreter that is available with your Python installation. You can also create a Virtualenv, pipenv, Poetry, or conda virtual environment . A virtual environment consists of a base interpreter and the installed packages.

With PyCharm Professional , you can also configure interpreters to execute your Python code on remote environments by using SSH, Vagrant, Docker, Docker Compose, or WSL (only for Windows).

When you configure a Python interpreter , you need to specify the path to the Python executable in your system. So, before configuring a Python interpreter, you need to ensure that you’ve downloaded Python and installed it in your system and you’re aware of a path to it.

You can create several Python interpreters based on the same Python executable. This is helpful when you need to create different virtual environments for developing different types of applications. For example, you can create one virtual environment based on Python 3.6 to develop Django applications and another virtual environment based on the same Python 3.6 to work with scientific libraries.

Python interpreters can be configured for a new project or for the current project (you can create a new interpreter or use one of the existing interpreters).

Configuring an existing Python interpreter

At any time, you can switch the Python interpreter either by using the Python Interpreter selector or in Settings .

Switch the Python interpreter using the Python Interpreter selector

Project interpreter selector

  • The Python Interpreter selector is located on the status bar. It is the most convenient and quickest way to switch the Python interpreter. Just click it and select the target interpreter:

Switch the Python interpreter in the IDE settings

View interpreters

  1. Press Ctrl+Alt+S to open the IDE settings and then select Project | Python Interpreter .
  2. Click the drop-down and select the desired Python interpreter:
  3. If it’s not on the list, click Show All . Then select the desired interpreter in the left pane and click OK . When PyCharm stops supporting any of the outdated Python versions, the corresponding Python interpreter is marked as unsupported.

When you change the project interpreter and select an SSH interpreter, you might need to synchronize the local content with the target server. Mind a notification balloon in the lower-right corner:

Sync local files with the deployment server

You can choose to enable the automatic uploading of files to the server:

  • Click Auto-upload files to start uploading on the next save.
  • Click Sync and auto-upload files to immediately sync the files and upload them on every save in future.

Modify a Python interpreter

  1. Press Ctrl+Alt+S to open the IDE settings and then select Project | Python Interpreter .
  2. Expand the list of the available interpreters and click Show All . Show all available interpreters
  3. You can modify the path to the Python executable in the Interpreter path field. When the Associate this virtual environment with the current project checkbox is enabled, the interpeter is available only in the current PyCharm project. To change the interpreter name, select the target interpreter and click . Edit iconThe Python interpreter name specified in the Name field, becomes visible in the list of available interpreters. Click OK to apply the changes. Edit interpreter settings

Remove a Python interpreter

If you no longer need a Python interpreter for a project, you can remove it from the project settings.

  1. Do one of the following:
    • Press Ctrl+Alt+S to open the IDE settings and then select Project | Python Interpreter .
    • Click the Python Interpreter selector and choose Interpreter Settings .
  2. Expand the list of the available interpreters and click Show All . Show all available interpreters
  3. Choose the interpreter that you want to remove and click . Remove a Python interpreter

Creating a new Python interpreter

Configuring local Python interpreters

To configure a local Python interpreter for the current project, follow one of the procedures below:

Configure a system interpreter

  1. Ensure that you have downloaded and installed Python on your computer. Installing Python on Windows from Microsoft Store If you are on Windows, you can download Python from the Microsoft Store and install it as a Python interpreter. Once the Python application is downloaded from the Microsoft Store, it becomes available in the list of the Python executables. Note that interpreters added from the Microsoft Store installations come with some limitations. Because of restrictions on Microsoft Store apps, Python scripts may not have full write access to shared locations such as TEMP and the registry.
  2. Do one of the following:
    • Click the Python Interpreter selector and choose Add New Interpreter .
    • Press Ctrl+Alt+S to open Settings and go to Project: | Python Interpreter . Click the Add Interpreter link next to the list of the available interpreters.
    • Click the Python Interpreter selector and choose Interpreter Settings . Click the Add Interpreter link next to the list of the available interpreters.
  3. Select Add Local Interpreter .
  4. In the left-hand pane of the Add Python Interpreter dialog, select System Interpreter . Adding a system interpreter
  5. In the Interpreter drop-down, select one of the Python interpreters that have been installed in your system, or click and in the Select Python Interpreter dialog that opens, choose the desired Python executable. Selecting the Python executableYou will need admin privileges to install, remove, and upgrade packages for the system interpreter. When attempting to install an interpreter package through an intention action, you might receive the following error message: System Interpreter warning messageAs prompted, consider using a virtual environment for your project.
  6. Click OK to complete the task.

Create a virtualenv environment

Creating a virtual environment

  1. Do one of the following:
    • Click the Python Interpreter selector and choose Add New Interpreter .
    • Press Ctrl+Alt+S to open Settings and go to Project: | Python Interpreter . Click the Add Interpreter link next to the list of the available interpreters.
    • Click the Python Interpreter selector and choose Interpreter Settings . Click the Add Interpreter link next to the list of the available interpreters.
  2. Select Add Local Interpreter .
  3. In the left-hand pane of the Add Python Interpreter dialog, select Virtualenv Environment .
  4. The following actions depend on whether you want to create a new virtual environment or to use an existing one. New virtual environment
    • Specify the location of the new virtual environment in the Location field, or click and browse for the desired location in your file system. The directory for the new virtual environment should be empty.
    • Choose the base interpreter from the list, or click and find the desired Python executable in your file system.
    • Select the Inherit global site-packages checkbox if you want all packages installed in the global Python on your machine to be added to the virtual environment you’re going to create. This checkbox corresponds to the —system-site-packages option of the virtualenv tool.

    Existing virtual environment

    • Choose the desired interpreter from the list.
    • If the desired interpreter is not on the list, click , and then browse for the desired Python executable (for example, venv/bin/python on macOS or venv\Scripts\python.exe on Windows).

The selected virtual environment will be reused for the current project.

If PyCharm displays the Invalid environment warning, it means that the specified Python binary cannot be found in the file system, or the Python version is not supported. Check the Python path and install a new version, if needed.

Create a conda environment

New Conda environment

  1. Ensure that Anaconda or Miniconda is downloaded and installed on your computer, and you’re aware of a path to its executable file. For more information, refer to the installation instructions.
  2. Do one of the following:
    • Click the Python Interpreter selector and choose Add New Interpreter .
    • Press Ctrl+Alt+S to open Settings and go to Project: | Python Interpreter . Click the Add Interpreter link next to the list of the available interpreters.
    • Click the Python Interpreter selector and choose Interpreter Settings . Click the Add Interpreter link next to the list of the available interpreters.
  3. Select Add Local Interpreter .
  4. In the left-hand pane of the Add Python Interpreter dialog, select Conda Environment .
  5. The following actions depend on whether you want to create a new conda environment or to use an existing one. New conda environment
    • Select the Python version from the list.
    • Normally, PyCharm will detect conda installation. Otherwise, specify the location of the conda executable, or click to browse for it.
    • Specify the environment name.

    Existing conda environment

    • Select the environment from the list.

The selected conda environment will be reused for the current project.

Create a pipenv environment

Adding a Pipenv environment

  1. Do one of the following:
    • Click the Python Interpreter selector and choose Add New Interpreter .
    • Press Ctrl+Alt+S to open Settings and go to Project: | Python Interpreter . Click the Add Interpreter link next to the list of the available interpreters.
    • Click the Python Interpreter selector and choose Interpreter Settings . Click the Add Interpreter link next to the list of the available interpreters.
  2. Select Add Local Interpreter .
  3. In the left-hand pane of the Add Python Interpreter dialog, select Pipenv Environment .
  4. Choose the base interpreter from the list, or click and find the desired Python executable in your file system.
  5. If your project contains Pipfile , you can choose whether you want to install the packages listed in it by enabling or disabling the Install packages from Pipfile checkbox. By default, the checkbox is enabled.
  6. If you have added the base binary directory to your PATH environmental variable, you don’t need to set any additional options: the path to the pipenv executable will be autodetected. If the pipenv executable is not found, follow the pipenv installation procedure to discover the executable path, and then specify it in the dialog.
  7. Click OK to complete the task.

When you have set the pipenv virtual environment as a Python interpreter, all available packages are added from the source defined in Pipfile . The packages are installed, removed, and updated in the list of the packages through pipenv rather than through pip.

Create a Poetry environment

creating a poetry environment

  1. Do one of the following:
    • Click the Python Interpreter selector and choose Add New Interpreter .
    • Press Ctrl+Alt+S to open Settings and go to Project: | Python Interpreter . Click the Add Interpreter link next to the list of the available interpreters.
    • Click the Python Interpreter selector and choose Interpreter Settings . Click the Add Interpreter link next to the list of the available interpreters.
  2. Select Add Local Interpreter .
  3. In the left-hand pane of the Add Python Interpreter dialog, select Poetry Environment .
  4. The following actions depend on whether you want to create a new Poetry environment or to use an existing one. New Poetry environment
    • Select Poetry Environment .
    • Choose the base interpreter from the list, or click and find the desired Python executable in your file system.
    • If your project contains pyproject.toml , you can choose whether you want to install the packages listed in it by enabling or disabling the Install packages from pyproject.toml checkbox. By default, the checkbox is enabled.
    • If PyCharm doesn’t detect the poetry executable, specify the following path in the dialog, replacing jetbrains with your username:

/Users/jetbrains/Library/Application Support/pypoetry/venv/bin/poetry
C:\Users\jetbrains\AppData\Roaming\pypoetry\venv\Scripts\poetry.exe
/home/jetbrains/.local/bin/poetry

  • Make sure that the project directory contains a pyproject.toml file.
  • Select Existing environment . Then expand the Interpreter list and choose the desired interpreter.
  • If the desired interpreter is not on the list, click, and then browse for the Python executable within the previously configured Poetry environment.

The selected Poetry environment will be reused for the current project.

Configuring remote Python interpreters

When a remote Python interpreter is added, at first the PyCharm helpers are copied to the remote host. PyCharm helpers are needed to run remotely the packaging tasks, debugger, tests and other PyCharm features.

Next, the skeletons for binary libraries are generated and copied locally. Also, all the Python library sources are collected from the Python paths on a remote host and copied locally along with the generated skeletons. Storing skeletons and all Python library sources locally is required for resolve and completion to work correctly.

PyCharm checks the remote helpers version on every remote run, so if you update your PyCharm version, the new helpers will be uploaded automatically, and you don’t need to recreate remote interpreter.

You can only add a remote interpreter for your Project . A remote interpreter cannot be set as the default interpreter for a Workspace .

Configure a WSL interpreter

  1. Do one of the following:
    • Click the Python Interpreter selector and choose Add New Interpreter .
    • Press Ctrl+Alt+S to open Settings and go to Project: | Python Interpreter . Click the Add Interpreter link next to the list of the available interpreters.
    • Click the Python Interpreter selector and choose Interpreter Settings . Click the Add Interpreter link next to the list of the available interpreters.
  2. Select On WSL .
  3. Wait until PyCharm detects Linux on your machine and completes introspection. Click Next to proceed: Detecting Linux
  4. In the left-hand pane of the dialog, select the type of the WSL interpreter you want to create: Virtual Environment , Conda Environment , or System Interpreter . New WSL interpreterFor a system interpreter, just provide the path to the Python executable in the selected Linux distribution. For virtual and conda environments, you can provide a path to a Python executable of an existing environment in the selected Linux distribution or create a new environment based on the specified Python.

Once done, the new interpreter will be added to your project, and the default mnt mappings will be set.

Configure an interpreter using Vagrant

  1. Ensure that the following prerequisites are met (outside of PyCharm):
    • One of supported Vagrant providers is installed on your computer.
    • Vagrant is installed on your computer, and all the necessary infrastructure is created.
    • The parent folders of the following executable files have been added to the system PATH variable:
      • vagrant.bat or vagrant from your Vagrant installation. This should be done automatically by the installer.
      • VBoxManage.exe or VBoxManage from your Oracle’s VirtualBox installation.
    • The required virtual boxes are created.
  2. Make sure that the Vagrant plugin is enabled.
  3. Ensure that you have properly initiated and started Vagrant. Basically, you need to open the Terminal window and execute the following commands:

$ vagrant init ubuntu/trusty64
$ vagrant up

For more information, refer to Vagrant documentation.

  • Do one of the following:
    • Click the Python Interpreter selector and choose Add New Interpreter .
    • Press Ctrl+Alt+S to open Settings and go to Project: | Python Interpreter . Click the Add Interpreter link next to the list of the available interpreters.
    • Click the Python Interpreter selector and choose Interpreter Settings . Click the Add Interpreter link next to the list of the available interpreters.
  • Select On Vagrant .
  • Specify the path to the Vagrant instance folder in Vagrant Instance Folder . Wait until you see a link in Vagrant Host URL .
  • In the New Target: Vagrant dialog, click the browse icon next to the Vagrant Instance Folder field, and specify the desired Vagrant instance folder. This results in showing the link to Vagrant Host URL . Specifying the Vagrant instance folder
  • In the next field, PyCharm will display the path to the Python executable. Press «Next» to proceed. Python executable is discovered
  • You can create a virtual environment (venv or conda) or use a system Python interpreter for the target Vagrant instance. Note that virtual environment must be configured and available in the specified Vagrant instance folder. Otherwise, the corresponding lists will be empty. Virtual environment on a target Vagrant instanceClik Create to complete the task.
  • Configure an interpreter using SSH

    1. Ensure that there is an SSH server running on a remote host, since PyCharm runs remote interpreters via ssh-sessions.
    2. Do one of the following:
      • Click the Python Interpreter selector and choose Add New Interpreter .
      • Press Ctrl+Alt+S to open Settings and go to Project: | Python Interpreter . Click the Add Interpreter link next to the list of the available interpreters.
      • Click the Python Interpreter selector and choose Interpreter Settings . Click the Add Interpreter link next to the list of the available interpreters.
    3. Select On SSH .
    4. Select an option to create a new SSH connection, then specify server information (host, port, and username). adding an interpreter via SSHAlternatively, you can select Existing and choose any available SSH configuration from the list. To create a new SSH configuration, follow the steps below: Creating an SSH configuration
      • Click next to the list of configurations: Add new SSH configuration
      • Click, disable the Visible only for this project checkbox, and fill in the required fields: Adding new SSH configuration
      • Once done, the newly created SSH configuration will appear in the list of available configurations. It will also become available in the SSH Deployment Configurations settings. Click Next to proceed: Connecting to SSH server
    5. In the next dialog window, provide the authentication details to connect to the target server. specifying authentication detailsSelect Password or Key pair (OpenSSH or PuTTY) and enter your password or passphrase. If Key pair (OpenSSH or PuTTY) is selected, specify:
      • Private key : location of the file with a private key
      • Passphrase : similar to a password, it serves to encrypt the private key.

    Click Next to proceed.

  • Wait until PyCharm completes the introspection of the SSH server. SSH server introspection
  • In the next dialog, select a type of Python environment to configure on the SSH server. Selecting a Python environmentYou can create a new virtual environment or сonda environment, select an existing one, or use a system interpreter.
    • Select the Inherit global site-packages checkbox if you want all packages installed in the global Python on your machine to be added to the virtual environment you’re going to create. This checkbox corresponds to the —system-site-packages option of the virtualenv tool.
    • If you need to execute your Python code on the SSH server as a sudo user, enable the Execute code with root privileges via sudo checkbox.
    • You can configure the path mappings between your local project and the server. To do that, click the Browse icon in the Sync folders field and enter the path to the local project folder and the path to the folder on the remote server.

    Click Create to complete adding the interpreter.

    Configure an interpreter using Docker

    1. Do one of the following:
      • Click the Python Interpreter selector and choose Add New Interpreter .
      • Press Ctrl+Alt+S to open Settings and go to Project: | Python Interpreter . Click the Add Interpreter link next to the list of the available interpreters.
      • Click the Python Interpreter selector and choose Interpreter Settings . Click the Add Interpreter link next to the list of the available interpreters.
    2. Select On Docker .
    3. Select an existing Docker configuration in the Docker server dropdown. Alternatively, click and perform the following steps to create a new Docker configuration: Create a Docker configuration Click to add a Docker configuration and specify how to connect to the Docker daemon. The connection settings depend on your Docker version and operating system. For more information, refer to Docker connection settings. The Connection successful message should appear at the bottom of the dialog. Docker connection settingsFor more information about mapping local paths to the virtual machine running the Docker daemon when using Docker on Windows or macOS, refer to Virtual machine path mappings for Windows and macOS hosts. You will not be able to use volumes and bind mounts for directories outside of the mapped local path. This table is not available on a Linux host, where Docker runs natively and you can mount any directory to the container.
    4. The following actions depend on whether you want to pull a pre-built image from a Docker registry or to build an image locally from a Dockerfile. Pull a Docker image Select Pull or use existing and specify the tag of the desired image in the Image tag field. Creating a Docker interpreter by pulling an imageBuild a Docker image Select Build and change the default values in the Dockerfile and Context folder fields if necessary. Creating a Docker interpreter by building an imageIf required, expand the Optional section and specify the following:
    Image tag Specify an optional name and tag for the built image. This can be helpful for referring to the image in the future. If you leave the field blank, the image will have only a random unique identifier.
    Build options Set supported docker build options. For example, you can specify metadata for the built image with the —label option.
    Build args Specify the values for build-time variables that can be accessed like regular environment variables during the build process but do not persist in the intermediate or final images. This is similar to using the —build-args option with the docker build command. These variables must be defined in the Dockerfile with the ARG instruction. For example, you can define a variable for the version of the base image that you are going to use:

    ARG PY_VERSION=latest FROM python:$PY_VERSION

    The PY_VERSION variable in this case will default to latest and the Dockerfile will produce an image with the latest available version of Python, unless you redefine it as a build-time argument. If you set, PY_VERSION=3.10 , Docker will pull python:3.10 instead, which will run a container with Python version 3.10. Redefining the PY_VERSION argument is similar to setting the following command-line option:

    —build-arg PY_VERSION=3.10

  • Wait for PyCharm to connect to the Docker daemon and complete the container introspection. Docker container introspection is completed
  • Next, select an interpreter to use in the Docker container. You can choose any virtualenv or conda environment that is already configured in the container or select a system interpreter. Selecting a system interpreter for a Docker target
  • Click OK . The configured remote interpreter is added to the list.
  • Configure an interpreter using Docker Compose

    1. Do one of the following:
      • Click the Python Interpreter selector and choose Add New Interpreter .
      • Press Ctrl+Alt+S to open Settings and go to Project: | Python Interpreter . Click the Add Interpreter link next to the list of the available interpreters.
      • Click the Python Interpreter selector and choose Interpreter Settings . Click the Add Interpreter link next to the list of the available interpreters.
    2. Select On Docker Compose .
    3. Select an existing Docker configuration in the Server dropdown. Alternatively, select Create new and perform the following steps to create a new Docker configuration: Create a Docker configuration Click to add a Docker configuration and specify how to connect to the Docker daemon. The connection settings depend on your Docker version and operating system. For more information, refer to Docker connection settings. The Connection successful message should appear at the bottom of the dialog. Docker connection settingsFor more information about mapping local paths to the virtual machine running the Docker daemon when using Docker on Windows or macOS, refer to Virtual machine path mappings for Windows and macOS hosts. You will not be able to use volumes and bind mounts for directories outside of the mapped local path. This table is not available on a Linux host, where Docker runs natively and you can mount any directory to the container.
    4. In Configuration files , specify the docker-compose.yml file. Also select the service. Creating a new Docker Compose targetOptionally, specify environment variables and edit the Compose project name in Project name .
    5. Wait until PyCharm creates and configures a new target: Configuring a Docker Compose target
    6. Next, select an interpreter to use in the container. You can choose any virtualenv or conda environment that is already configured in the container, or select a system interpreter. Selecting a system interpreter for a Docker target
    7. Click OK . The configured remote interpreter is added to the list.

    Setting the default interpreter

    In PyCharm, you can specify an interpreter that will be automatically set for all newly created projects.

    1. Go to File | New Projects Setup | Settings for New Projects (on Window and Linux) or File | New Projects Setup | Preferences for New Projects (on macOS).
    2. Select Python Interpreter settings. Then either choose an existing interpreter from the Python interpreter list of click to add a new interpreter. Click OK to save the changes. The change will become effective for all newly created projects in PyCharm.

    Managing interpreter packages

    For each interpreter, you can install, upgrade, and delete Python packages. By default, PyCharm uses pip to manage project packages. For conda environments you can use the conda package manager.

    Managing packages

    PyCharm smartly tracks the status of packages and recognizes outdated versions by showing the number of the currently installed package version (column Version ), and the latest available version (column Latest version ). When a newer version of a package is detected, PyCharm marks it with the arrow sign and suggests to upgrade it.

    By default, the Latest version column shows only stable versions of the packages. If you want to extend the scope of the latest available versions to any pre-release versions (such as beta or release candidate ), click Show early releases .

    You can upgrade several packages at once. Hold Cmd (macOS) or Ctrl on (Unix or Windows), left-click to select several items in the list of packages, and then click Upgrade .

    See the detailed instructions:

    • How to install a package
    • How to upgrade the package
    • How to uninstall the package

    If you are looking for a more convenient way to search for Python packages, preview the documentation, and manage Python package repositories, try the Python Packages tool window. For more information, refer to Manage packages in the Python Packages tool window.

    Почему PyCharm не видит другие интерпретаторы Python?

    5dd38b4111979341782822.jpeg

    Не могу в PyCharm указать путь к интерпретатору Python3.8.

    Стоит LMDE 3, в ней предустановлен Python 3.5.3, находится: /usr/bin/python3
    Поставил себе Python3.8, тот находится: /usr/local/bin/python3.8

    Запускаю PyCharm, открываю Settings, ищу путь к 3.8, IDE не видит директории /local внутри директории /usr
    5dd38cb72d312881510568.png
    5dd39398d3e9b584995285.png
    Кроме того, IDE не видит также ни /usr/bin/python, ни /usr/bin/python3, ни /usr/bin/python3.5, зато использует Python3.7, который не распознаётся системой (но тут, как я понимаю, дело в PATH) и которого ВООБЩЕ нет в /usr/bin/
    5dd3918e0eb79194364895.png

    Что вообще происходит?
    Как указать необходимый интерпретатор?

    • Вопрос задан более трёх лет назад
    • 5153 просмотра

    1 комментарий

    Простой 1 комментарий

    Добавить комментарий

    Ваш адрес email не будет опубликован. Обязательные поля помечены *