ModuleNotFoundError with the latest 0.5.0 version and the documentation example
See original GitHub issueReproduction:
$ virtualenv env
$ . .\env\Scripts\activate
$ pip install aiohttp gql
$ python
>>> from gql.transport.aiohttp import AIOHTTPTransport
Traceback (most recent call last):
File ".\test_gql.py", line 1, in <module>
from gql.transport.aiohttp import AIOHTTPTransport
ModuleNotFoundError: No module named 'gql.transport.aiohttp'
Windows 10 1909 Python version 3.8.x gql version 0.5.0 (latest available version in PyPI)
Issue Analytics
- State:
- Created 3 years ago
- Comments:14 (1 by maintainers)
Top Results From Across the Web
What is the correct way to install the delta module in python?
To run Delta locally with PySpark, you need to follow the official documentation. This works for me but only when executing directly the ......
Read more >Quick installation — SpeechBrain 0.5.0 documentation
New features, tutorials, and documentation will appear over time. SpeechBrain can be installed via PyPI to rapidly use the standard library.
Read more >statannotations - PyPI
What is it. Python package to optionally compute statistical test and add statistical annotations on plots generated with seaborn.
Read more >Install and set up | ArcGIS API for Python
To upgrade to a package beyond the 1.2.5 release, see Upgrade the arcgis package ... To install the ArcGIS API for Python from...
Read more >importlib — The implementation of import — Python 3.11.1 ...
New in version 3.4. Changed in version 3.7: ModuleNotFoundError is raised when the module being reloaded lacks a ModuleSpec ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Please check the installation instructions
This worked for me:
pip3 install 'gql[all]==3.0.0b0'