无法在Windows 7旗舰版中安装open edx

时间:2015-02-01 00:22:03

标签: windows curl vagrant

我想在windows 7 ultimate中安装open edx fullstack,我首先安装

VirtualBox >= 4.3.12
Vagrant >= 1.5.3 

也卷曲 当我想在提示命令中安装open edx时:

mkdir fullstack
cd fullstack
curl -L https://raw.githubusercontent.com/edx/configuration/master/vagrant/release/fullstack/Vagrantfile > Vagrantfile
vagrant plugin install vagrant-hostsupdater
vagrant up

我在流浪之后发现了这个错误

 C:\Users\khaoula\edx_aspen>vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Box 'aspen-fullstack-1' could not be found. Attempting to find and
install...
    default: Box Provider: virtualbox
    default: Box Version: >= 0
==> default: Adding box 'aspen-fullstack-1' (v0) for provider: virtualbox
    default: Downloading: http://files.edx.org/vagrant-images/20141028-aspen-ful
lstack-1.box
    default: Progress: 0% (Rate: 16462/s, Estimated time remaining: 72:23:58)
An error occurred while downloading the remote file. The error
message, if any, is reproduced below. Please fix this error and try
again.

transfer closed with 2992127314 bytes remaining to read

感谢帮助我

1 个答案:

答案 0 :(得分:1)

安装Vagrant和Virtual Box -

创建项目文件夹 -

mkdir testapp

创建Vagrant实例 -

vagrant init testapp

添加Box(Ubuntu 14.04) 您可以从floolowing链接下载框

http://hashicorp-files.vagrantup.com/precise64.box

添加流浪汉

vagrant box add --NAME testapp c://downloads/precise64.box

添加框后

vagrant up

如果有任何错误 - 禁用apache,skype,IIS,Elascticsearch服务..

运行框

vagrant ssh

一旦你在虚拟框内登录Ubuntu -

在终端 -

sudo apt-get update -y
sudo apt-get upgrade -y
sudo reboot

重启后再次使用vagrant ssh

安装EDX

wget https://raw.githubusercontent.com/edx/configuration/master/util/install/vagrant.sh -O - | bash
相关问题