29 lines
557 B
Bash
Executable File
29 lines
557 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
sudo rpm -Uvh http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-23.noarch.rpm
|
|
|
|
sudo dnf install -y \
|
|
git \
|
|
python \
|
|
python-devel \
|
|
python-pip \
|
|
python-setuptools \
|
|
python-virtualenv \
|
|
pygobject2-devel \
|
|
python-virtualenvwrapper \
|
|
libtool \
|
|
libffi-devel \
|
|
openssl-devel \
|
|
autoconf \
|
|
bison \
|
|
swig \
|
|
glib2-devel \
|
|
s3cmd \
|
|
portaudio-devel \
|
|
mpg123 \
|
|
screen \
|
|
curl
|
|
|
|
# upgrade virtualenv to latest from pypi
|
|
sudo pip install --upgrade virtualenv
|