Skip to content Skip to sidebar Skip to footer

Install Taichi Package On Python

I tried to run a script with python, it has taichi package downloaded from GitHub. I have little knowledge of how python packages are installed, now I got error in command prompt l

Solution 1:

To install packages in python you just run the command pip install (name of package) in the command prompt so in your case that would be pip install taichi

Solution 2:

How to install virtualenv:

Install pip first

sudo apt-get install python3-pip

Then install virtualenv using pip3

sudo pip3 install virtualenv 

Now create a virtual environment

virtualenv venv 

Active your virtual environment:

source venv/bin/activate

Now install your package for python

 pip3 install taichi

Solution 3:

I have figured it our that this Taichi package needs 64 bits python, it also needs LLMV file downloaded. Besides, there should be virtual studio installed in the local computer. Then this Taichi package can be installed just by using "pip install taichi" in command.

Thanks for everyone's help!

Post a Comment for "Install Taichi Package On Python"