How do I install Socks / SocksIPy on Ubuntu?

前端 未结 3 1342
不知归路
不知归路 2020-12-30 03:03

I am new to python and would like to install SocksIPy on Ubuntu (running within a VirtualBox vm). The README says to place the socks.py file into m

相关标签:
3条回答
  • 2020-12-30 03:27

    The simplest way to install it - provided the VM has working Internect connectivity - would likely be to let apt-get do it for you. From a terminal:

    sudo apt-get install python-socksipy
    

    It's in the universe repository, which should be enabled by default. If not, you can enable it yourself.

    0 讨论(0)
  • 2020-12-30 03:35

    PySocks is yet another SocksiPy fork:

    $ pip install PySocks
    

    It works on Python 2/3.

    0 讨论(0)
  • 2020-12-30 03:46

    For Python3

    $ sudo apt-get install python3-socks
    
    0 讨论(0)
提交回复
热议问题