-
Hey, I was having issues when trying to install the dev version of textual. When just downloading textual with 'pip install textual' it works great and downloads the most recent version 0.28.0. However, when I try installing the dev version of textual with 'pip install "textual[dev]" it downloads the 0.1.18 version and states: WARNING: textual 0.1.18 does not provide the extra 'dev'. and ends up downloading the 0.1.18 version. It also doesn't add a textual.exe at all. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 9 comments 1 reply
-
Could you give us some more details about your environment? Things like operating system, Python version, how you've got Python installed, if you're using virtual environments, etc? If possible, ideally a description of how we can create the same or a similar setup to what you're using and the exact commands used and the results seen, so we can test and compare. |
Beta Was this translation helpful? Give feedback.
-
We installed Python 3.10.0 from python.org on a Windows 10 OS. Using VS Code, we created a virtual environment with py -m venv .venv. Within that environment, we pip install "textual[dev]". This pulls from our local PyPl collection. |
Beta Was this translation helpful? Give feedback.
-
So you're not pulling from PyPi itself, but some cache local to you? What happens if you don't do that? |
Beta Was this translation helpful? Give feedback.
-
Were working on an off network computer so all of our pip installs come from a local pypi |
Beta Was this translation helpful? Give feedback.
-
Given we've only got control over what is available on PyPi, I'm not sure what we can do here. The obvious question I'd be asking myself here when faced with your situation is "is there something wrong with the content of our local PyPi?" -- is this something you've looked into and eliminated? |
Beta Was this translation helpful? Give feedback.
-
Our localpypi has both textual 0.1.18 and 0.28.0. We assumed it would download the most recent version. We also have a folder of textual_dev-0.0.2, is that up to date? Is there also a way to download a specific version with dev like how you can do: pip install "textual"==0.28.0 |
Beta Was this translation helpful? Give feedback.
-
Have you tried this? pip install "textual[dev]==0.28.0" |
Beta Was this translation helpful? Give feedback.
-
(as this seems to be a not-really-Textual issue, I'm converting this to a discussion). |
Beta Was this translation helpful? Give feedback.
-
I get the error that it cannot find a version that satisfies the requirement msgpack>=1.0.3 so I updated it and believe it is now working, thanks for your time! |
Beta Was this translation helpful? Give feedback.
Given we've only got control over what is available on PyPi, I'm not sure what we can do here. The obvious question I'd be asking myself here when faced with your situation is "is there something wrong with the content of our local PyPi?" -- is this something you've looked into and eliminated?