Setting Noise Cancellation AWS EC2 Error

I tried to easily install and install to install numpy on an EC2 micro instance. Does not work.

I get:

RuntimeError: Broken toolchain: unable to link a simple C program

I also tried virtualenv, the same story.
What am I doing wrong?

+4
source share
2 answers

You probably haven't installed development packages.

Amazon Linux run:

sudo yum groupinstall "Development Tools"

Ubuntu run:

sudo apt-get install packaging-dev
+9
source

For easy ssh testing in your instance

sudo yum install gcc
sudo pip install numpy

then go make some coffee. Installed after about 3.5 minutes.

+1
source

Source: https://habr.com/ru/post/1534234/


All Articles