Hi Joe! Are you using Python 3.7 or above? Arches needs Python 3.7 or above.
Do you have any other versions of python on your machine? If you do then you need to make sure you are using the right python.exe file when creating the ENV. You can use the full python.exe to be sure... *C:\folder_containing_env\> C:\Python37\python.exe -m venv ENV* Once you have created the ENV, make sure that you activate it before doing any other python calls... *C:\folder_containing_env\> ENV\Scripts\activate* ... this just ensures that any python command run use the correct python interpreter and isolate any installed packages. You'll know it is activated as "(ENV)" will appear at the beginning of the command line prompt. Our script runs the following to create a new project. We use the path of the python.exe in the ENV to make sure we are using the correct version. *(ENV) C:\folder_containing_env\> ENV\Scripts\python.exe ENV\Scripts\arches-project create my_project* Hope this helps? On Saturday, February 20, 2021 at 3:31:06 AM UTC [email protected] wrote: > My ENV for Python is working and activated but when I run the following > command I can not create new project >> > > > python ENV\Scripts\arches-project create my_project > -- -- To post, send email to [email protected]. To unsubscribe, send email to [email protected]. For more information, visit https://groups.google.com/d/forum/archesproject?hl=en --- You received this message because you are subscribed to the Google Groups "Arches Project" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/archesproject/ca5876e5-f454-4a7e-8f7b-3caff2772eeen%40googlegroups.com.
