11-05-2024 06:43 AM
I am trying to set up pyats in a virtual environment. When I run:
pip install --trusted-host=pypi.org --trusted-host=files.pythonhosted.org pyats[full]
I get this error:
ERROR: Could not find a version that satisfies the requirement pyats[full] (from versions: none)
ERROR: No matching distribution found for pyats[full]
I have tried on python 3.8 and 3.12, is there a different version or something else I need to install
11-05-2024 06:50 AM - edited 11-05-2024 06:58 AM
You should put quotes around the package like so:
pip install --trusted-host=pypi.org --trusted-host=files.pythonhosted.org "pyats[full]"
EDIT: Tested on MacOS with python 3.12, which required the quotes. Also tested on ubuntu running python 3.10, where your command worked out of the box. Which OS are you running?
11-05-2024 07:32 AM
windows 11
11-05-2024 12:42 PM
pyATS is unfortunately not supported on windows for the time being. You will have to run it under WSL(Windows Subsystem for Linux) if you wish to run it on your Windows machine. See the following guide for how to get started with WSL if you are not familiar with it: https://learn.microsoft.com/en-us/windows/wsl/install
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide