Skip to content

Commit

Permalink
pip3
Browse files Browse the repository at this point in the history
  • Loading branch information
williamstein committed Aug 4, 2020
1 parent 946264a commit a0717be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ def pull():


def install_pyutil():
cmd(SUDO + "pip install --upgrade ./smc_pyutil")
cmd(SUDO + "pip3 install --upgrade ./smc_pyutil")


def install_sagews():
if os.system('which sage') == 0:
cmd("sage -pip install --upgrade ./smc_sagews")
cmd(SUDO + "pip install --upgrade ./smc_sagews") # as a fallback
cmd(SUDO + "pip3 install --upgrade ./smc_sagews") # as a fallback


def install_project():
Expand Down

0 comments on commit a0717be

Please sign in to comment.