-
Notifications
You must be signed in to change notification settings - Fork 48
"pip install msgraph-core" - cannot find such a package #91
-
Hello,
I am quite new to Python dev eco system. Currently I am trying to install the package msgraph-core using pip3 or poetry and the both tools say to me that there is no such package. In the same time I tried to find the package on https://pypi.org/ and here again I cannot find the package.
What I need to do ?
Here are my commands:
poetry add msgraph-core
pip3 install msgraph-core
Thanks,
Anton
Beta Was this translation helpful? Give feedback.
All reactions
It is now release on pypi.
Replies: 2 comments 1 reply
-
I think the package is not yet fully released on pypi. That is why you cannot find it.
What you can do, fortunately, is install the last release ZIP:
pip install https://github.com/microsoftgraph/msgraph-sdk-python-core/archive/refs/tags/0.1.0.zip
I hope this helps. Once the package is on pypi, you will be able to simply use poetry add msgraph-core or pip install msgraph-core. Should be a matter of days.
Beta Was this translation helpful? Give feedback.
All reactions
-
It is now release on pypi.
Beta Was this translation helpful? Give feedback.
All reactions
-
Thanks for the reply. I will check it :)
Beta Was this translation helpful? Give feedback.