uranusjr / pythonup-posix

The Python Runtime Manager for POSIX systems
ISC License
11 stars 1 forks source link

Provide a command to link executables #1

Closed frostming closed 6 years ago

frostming commented 6 years ago

Brought here by your talk on PyConTW. I am taking your suggestions and found this great project.

Can you add a new command link(add perhaps unlink, too) to link the executables under PythonUp/versions/x.x/bin to PythonUp/bin?

uranusjr commented 6 years ago

There is a command use that you can use like this

pythonup use 3.6
# Links things in versions/3.6/bin to bin

pythonup use 3.6 3.5
# Links things in versions/3.6/bin and version/3.5/bin to bin
# The former takes precedence if there are name conflicts.

pythonup use --reset
# Removes things in bin
frostming commented 6 years ago

Oh, greate