0

I have python 3.8, but need to develop a script in python 3.6. Can I create a virtual environment to work with that lower version of python?

  • 1
    Does this answer your question? [Use different Python version with virtualenv](https://stackoverflow.com/questions/1534210/use-different-python-version-with-virtualenv) – Hampus Larsson Nov 09 '21 at 19:39

1 Answers1

-1

To create the script in Python3.6 you first need to create a new environment with Python3.6

Depending on your OS, there are slightly different ways to create a virtual environment.

You can follow this answer.

DataPlug
  • 340
  • 3
  • 10
  • 1
    If you feel that another Q&A appropriately addresses the question, please flag or vote it as a duplicate instead of repeating information. – MisterMiyagi Nov 09 '21 at 19:45