1
resposta

[Dúvida] virtualenv: The term 'virtualenv' is not recognized as a name of a cmdlet, function, script file, or executable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.

alguém pode me ajudar? Aparece a seguinte mensagem:

virtualenv: The term 'virtualenv' is not recognized as a name of a cmdlet, function, script file, or executable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.

1 resposta

Bom dia, Matheus! Tudo bem com você?

Nas versões atuais do Python já temos um módulo nativo responsável pelos ambientes virtuais, não sendo necessário utilizarmos o módulo virtualenv. Para criar o ambiente virtual execute no prompt de comandos no terminal aberto na pasta de seu projeto:

python -m venv venv

Para ativá-la:

.\venv\Scripts\activate

Com o ambiente virtual ativado, basta prosseguir com a aula a partir do minuto 04:01 para instalar as bibliotecas do projeto.

Espero ter ajudado. Conte com o apoio do Fórum na sua jornada. Fico à disposição. Abraços e bons estudos!

Caso este post tenha lhe ajudado, por favor, marcar como solucionado ✓. Bons Estudos!