简体   繁体   中英

installing RDFLIB package in python 3.4

I am trying to install rdflib package in Python. I have anaconda 3.4 installed on my system, I tried installing this package in spyder with the following command:

!pip install python-rdflib

but it is not installing. please help to install rdflib package.

Install everithing in a virtualenv and not system-wide:

virtualenv myapp
source myapp/bin/activate
pip install anaconda  # or something similar (see below).
pip install rdflib

For more information:

pip install rdflib

run this command in command prompt (Command prompt should be run as administrator) and wait till installing the package.. after installing package in command prompt open spyder or any python IDE and call import rdflib.. it worked for me...

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM