-
Notifications
You must be signed in to change notification settings - Fork 11
FAQs
Divyanshu Kakwani edited this page Nov 29, 2019
·
1 revision
Q. Module not found even after pip3 install .
It is possibly due to conflicting installations of python3
(especially sometimes with anaconda3
).
Ensure if pip3
and python3
are present in the same directory by:
which pip3
which python3
If they're in different directories, fix the issue, or temporarily use the following:
python3 -m pip install .
**Q. AttributeError: module 'lib' has no attribute 'X509_up_ref'**
Try the following and reinstall:
pip3 uninstall pyOpenSSL
Q. My modifications are not reflected in corpora
It's recommended to do pip3 install .
after your modifications to them in effect in corpora
.
Q. Error occurred during initialization of VM
java.lang.Error: Properties init: Could not determine current working directory.
at java.lang.System.initProperties(Native Method)
at java.lang.System.initializeSystemClass(System.java:1166)
cd
into some other directory and get back into your original directory. And try again.