Problem with: source env/bin/activate

I am using ubuntu 18.04. I am trying to run Oyente tool for which I have to use Python.

I found the following link:

How to use Oyente...

I am getting error at the following command:

@lc2530hz:~$ source env/bin/activate

bash: env/bin/activate: No such file or directory

I don't have "env" directory. Should I create the directory. I found several links for the above error but each link is using a different. I can't understand their solution. Somebody please guide me.

Zulfi.

1 Answer

From that guide, you're creating a Python virtual environment:

python -m virtualenv envsp
source env/bin/activate

Using the above, you're creating a folder called envsp which will hold your virtual env.

To enter it, use:source envsp/bin/activate

Seems like just a typo in the guide.

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like