Skip to content
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

fix the problems when install viper in Ubuntu16.04 #442

Merged
merged 1 commit into from
Nov 5, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/installing-viper.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Install Python 3.6 and some necessary packages:
wget https://www.python.org/ftp/python/3.6.2/Python-3.6.2.tgz
tar xfz Python-3.6.2.tgz
cd Python-3.6.2/
./configure prefix /usr/local/lib/python3.6
./configure --prefix /usr/local/lib/python3.6
sudo make
sudo make install

Expand Down Expand Up @@ -75,7 +75,7 @@ other development environment set-up.

To create a new virtual environment for Viper run the following commands:
::
virtualenv -p /usr/local/lib/python3.6/bin/python --no-site-packages ~/viper-venv
virtualenv -p /usr/local/lib/python3.6/bin/python3 --no-site-packages ~/viper-venv
Copy link
Member

@fubuloubu fubuloubu Nov 3, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this is my bad, I created a symlink python pointing to python3 I think got copied when I showed the original author my install instructions for 16.04.

Copy link
Author

@kaikai1024 kaikai1024 Nov 3, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

And i wonder if it's better to add some examples just like the doc of the solidity

exampleOfTheSolidity

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We have examples in a separate section we are working on integrating into the docs

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cool

source ~/viper-venv/bin/activate

To find out more about virtual environments, check out:
Expand Down