sh: make: not found

770

try sudo apt-get install build-essential

build-essential is a package which contains stuff needed for building software. (make, gcc ..)

Share:
770

Related videos on Youtube

rok
Author by

rok

Updated on September 17, 2022

Comments

  • rok
    rok over 1 year

    I'm using the markov chain irc bot based on twisted. Socks proxy may be putty, listening on port 22. Adding the following code to the above client (at the top of the py file) didn't help:

    import socks, socket
    socks.setdefaultproxy(socks.PROXY_TYPE_SOCKS5,
        'localhost', 22)
    socket.socket = socks.socksocket
    

    Whereas, doing so solved the problem while using SimpleIRCClient from irclib, however irclib doesn't fit other requirements.

    Thanks.

    • Dour High Arch
      Dour High Arch over 10 years
      Wait, it "didn't help" and it "solved the problem"? What "other requirements" do you have?
    • rok
      rok over 10 years
      For example, periodical tasks. periodical tasks with irc client According to that post, twisted based client is better for periodical tasks.
  • deaton.dg
    deaton.dg over 13 years
    you meant sudo apt-get install build-essential right ?
  • deaton.dg
    deaton.dg over 13 years
    yeah cool it worked