-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Installing external libraries with pip #22
Comments
@davidmurray , On which OS / Distribution your are running? This might be true only for a few OSes. |
Windows 10, QGIS 3.34 |
@greenscientist |
The current python library in transition use the geojson library, so we'd need to change it there. (But no objection to do that if it's comptatible) |
That's probably a windows-only issue, as it works well on Linux. We'll need to confirm on a mac. |
@tibobliss mentioned he had to do the following to update the plugin from qgis:
Et @greenscientist a ajouté "on dirait qu'on peut driver pip directement à partir du plugin. Ca pourrait être une solution pour installer le package transition avec le plugin. J'ai vu dans les forum d'autres plugin qui avait l'air de faire ça. ". Possible de mettre un lien vers ces forums? |
…allation process in QGIS Fixes chairemobilite#22. The wheel was packaged by simply running 'pip wheel .' in the pyTransition main folder. The wheel file for the 'requests' library is not included because this library comes with QGIS by default.
…allation process in QGIS Fixes chairemobilite#22. The wheel was packaged by simply running 'pip wheel .' in the pyTransition main folder. The wheel file for the 'requests' library is not included because this library comes with QGIS by default.
The README file suggests installing the
geojson
andpytransition
libraries using pip:pip install pyTransition geojson
However, QGIS ships with its own copy of Python, so running this command in a general cmd prompt will not install the libraries for QGIS to use.
Based on https://gis.stackexchange.com/questions/282685/installing-external-python-packages-in-qgis-3, I had to:
The text was updated successfully, but these errors were encountered: