-
Notifications
You must be signed in to change notification settings - Fork 6
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
Install and import #2
Comments
Hi there, Thank you for your interest in our Portal package! I wonder did you install our package with the command Best, |
This error occurred during installing git clone https://github.com/YangLabHKUST/Portal.git
cd Portal
conda env update --f environment.yml
conda activate portal |
Dear there,
I have tried to test it, but was stuck at the import step. After run
import portal
under Jupyter lab. The following error message developed:ModuleNotFoundError Traceback (most recent call last)
Input In [15], in <cell line: 1>()
----> 1 import portal
File C:\jlab_server\lib\site-packages\portal_init_.py:3, in
1 from future import absolute_import
----> 3 from .api import API, APIException
4 from ._version import version
6 all = ['API', 'APIException']
File C:\jlab_server\lib\site-packages\portal\api.py:4, in
1 #!/usr/bin/env python
2 from functools import wraps
----> 4 import cookielib
5 import HTMLParser
6 import json
ModuleNotFoundError: No module named 'cookielib'
I hav tried to fix it, by running:
import http.cookiejar
cookielib = http.cookiejar
But this issue remains the same.
I wonder whether you could help to fix it.
Thanks
The text was updated successfully, but these errors were encountered: