Advertisement
Guest User

CentOS 7 Python 3.4 test install

a guest
Jun 26th, 2015
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. ```
  2. [~/centos7]$ cat Vagrantfile
  3. Vagrant.configure(2) do |config|
  4. config.vm.box = "centos/7"
  5. end
  6. [~/centos7]$ ls
  7. python34-3.4.3-2.el7.x86_64.rpm python34-libs-3.4.3-2.el7.x86_64.rpm Vagrantfile
  8. [~/centos7]$ vagrant up
  9. <snip>
  10. [~/centos7]$ vagrant ssh
  11. <snip>
  12. [vagrant@localhost ~]$ sudo rpm -i sync/python34-libs-3.4.3-2.el7.x86_64.rpm
  13. [vagrant@localhost ~]$ sudo rpm -i sync/python34-3.4.3-2.el7.x86_64.rpm
  14. [vagrant@localhost ~]$ python3.4 --version
  15. Python 3.4.3
  16. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement