Magento2 php商城在windows10上安装

magento2

下载地址:https://github.com/magento/magento2/archive/develop.zip

参考地址: 版本要求 这个magento2  要选择好php的版本  下载综合版服务器时看好这个服务器支持的具体版本 下边的网站有具体的版本要求页,在此就不列出了

https://www.magentochina.org/blog/download-install-magento.html

XAMPP 版本上边明确提示里边带有php的版本.我选的是支持 php 7.0.6的版本

下载地址, https://jaist.dl.sourceforge.net/project/xampp/XAMPP%20Windows/7.0.6/xampp-win32-7.0.6-0-VC14-installer.exe

如果php 版本没选择好,则进行 安装时会出现版本不正确的提示,导致失败

第二:报错2:打开安装页提示

Vendor autoload is not found. Please run ‘composer install‘ under application root directory.

没安装composer  是php的依赖项下载服务吧.个人理解,总之需要安装. 运行xammpp 里边的 命令行  cd 进入htdoc目录  composer install

结果又报错:

# composer install
Loading composer repositories with package information
Installing dependencies (including require-dev) from lock file
Your requirements could not be resolved to an installable set of packages.

  Problem 1
    - The requested PHP extension ext-intl * is missing from your system. Install or enable PHP‘s intl extension.
  Problem 2
    - The requested PHP extension ext-xsl * is missing from your system. Install or enable PHP‘s xsl extension.

这是提示,php.ini  没有把上边要求的注释掉的内容打开,这两个intl 和xsl 都有相关的dll 库在php的ext 目录下.

extension=php_intl.dll

extension=php_xsl.dll

在重新运行composer install 问题解决

# composer install
Loading composer repositories with package information
Updating dependencies (including require-dev)
Package operations: 99 installs, 0 updates, 0 removals
  - Installing magento/magento-composer-installer (0.1.12): Downloading (100%)
  - Installing zendframework/zend-stdlib (2.7.7): Downloading (100%)
  - Installing zendframework/zend-hydrator (1.1.0): Downloading (100%)
  - Installing psr/container (1.0.0): Downloading (100%)
  - Installing container-interop/container-interop (1.2.0): Downloading (100%)
  - Installing zendframework/zend-validator (2.9.1): Downloading (100%)
  - Installing zendframework/zend-escaper (2.5.2): Downloading (100%)
  - Installing zendframework/zend-uri (2.5.2): Downloading (100%)
  - Installing zendframework/zend-eventmanager (2.6.3): Downloading (100%)
  - Installing zendframework/zend-code (3.1.0): Downloading (100%)
  - Installing zendframework/zend-server (2.7.0): Downloading (100%)
  - Installing zendframework/zend-soap (2.6.0): Downloading (100%)
  - Installing zendframework/zend-math (2.7.0): Downloading (100%)
  - Installing zendframework/zend-crypt (2.6.0): Downloading (100%)
  - Installing zendframework/zend-console (2.6.0): Downloading (100%)
  - Installing zendframework/zend-filter (2.7.2): Downloading (100%)
  - Installing zendframework/zend-inputfilter (2.7.4): Downloading (100%)
  - Installing zendframework/zend-form (2.10.2): Downloading (100%)
  - Installing zendframework/zend-servicemanager (2.7.8): Downloading (100%)
  - Installing zendframework/zend-mvc (2.6.3): Downloading (100%)
  - Installing zendframework/zend-text (2.6.0): Downloading (100%)
  - Installing zendframework/zend-di (2.6.1): Downloading (100%)
  - Installing zendframework/zend-loader (2.5.1): Downloading (100%)
  - Installing zendframework/zend-http (2.6.0): Downloading (100%)
  - Installing zendframework/zend-db (2.8.2): Downloading (100%)
  - Installing paragonie/random_compat (v2.0.10): Downloading (100%)
  - Installing zendframework/zend-captcha (2.7.1): Downloading (100%)
  - Installing colinmollenhour/credis (1.6): Downloading (100%)
  - Installing colinmollenhour/php-redis-session-abstract (v1.2.2): Downloading (100%)
  - Installing symfony/polyfill-mbstring (v1.4.0): Downloading (100%)
  - Installing psr/log (1.0.2): Downloading (100%)
  - Installing symfony/debug (v3.0.9): Downloading (100%)
  - Installing symfony/console (v2.8.22): Downloading (100%)
  - Installing colinmollenhour/cache-backend-redis (1.10.2): Downloading (100%)
  - Installing colinmollenhour/cache-backend-file (1.4): Downloading (100%)
  - Installing pelago/emogrifier (v0.1.1): Downloading (100%)
  - Installing tubalmartin/cssmin (v3.0.0): Downloading (100%)
  - Installing braintree/braintree_php (3.22.0): Downloading (100%)
  - Installing tedivm/jshrink (v1.1.0): Downloading (100%)
  - Installing symfony/process (v2.8.22): Downloading (100%)
  - Installing symfony/finder (v3.3.2): Downloading (100%)
  - Installing symfony/filesystem (v3.3.2): Downloading (100%)
  - Installing seld/phar-utils (1.0.1): Downloading (100%)
  - Installing seld/jsonlint (1.6.1): Downloading (100%)
  - Installing seld/cli-prompt (1.0.3): Downloading (100%)
  - Installing justinrainbow/json-schema (5.2.1): Downloading (100%)
  - Installing composer/spdx-licenses (1.1.6): Downloading (100%)
  - Installing composer/semver (1.4.2): Downloading (100%)
  - Installing composer/ca-bundle (1.0.7): Downloading (100%)
  - Installing composer/composer (1.4.1): Downloading (100%)
  - Installing magento/composer (1.2.0): Downloading (100%)
  - Installing ramsey/uuid (3.6.1): Downloading (100%)
  - Installing symfony/yaml (v2.8.22): Downloading (100%)
  - Installing sebastian/version (1.0.6): Downloading (100%)
  - Installing sebastian/recursion-context (1.0.5): Downloading (100%)
  - Installing sebastian/exporter (1.2.2): Downloading (100%)
  - Installing sebastian/environment (1.3.8): Downloading (100%)
  - Installing sebastian/diff (1.4.3): Downloading (100%)
  - Installing sebastian/comparator (1.2.4): Downloading (100%)
  - Installing doctrine/instantiator (1.0.5): Downloading (100%)
  - Installing phpunit/php-text-template (1.2.1): Downloading (100%)
  - Installing phpunit/phpunit-mock-objects (2.3.8): Downloading (100%)
  - Installing phpunit/php-timer (1.0.9): Downloading (100%)
  - Installing phpunit/php-file-iterator (1.3.4): Downloading (100%)
  - Installing phpunit/php-token-stream (1.4.11): Downloading (100%)
  - Installing phpunit/php-code-coverage (2.2.4): Downloading (100%)
  - Installing phpunit/phpunit (4.1.0): Downloading (100%)

成功:

时间: 2024-10-14 20:31:00

Magento2 php商城在windows10上安装的相关文章

Windows10上安装Keras 和 TensorFlow-GPU

安装环境: Windows 10 64bit GPU: GeForce gt 720 Python: 3.5.3 CUDA: 8 首先下载Anaconda3的Win10 64bit版,安装Python3.5版本.因为目前TensorFlow对Windows只支持Python3.5.可以直接下载Anaconda的安装包安装即可,一般不会有问题.(清华镜像https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/) TensorFlow 有两个版本:

windows10上安装mysql(详细步骤)

环境:windwos 10(1511) 64bit.mysql 5.7.14 时间:2016年9月5日 一.下载mysql 1. 在浏览器里打开mysql的官网http://www.mysql.com/ 2. 进入页面顶部的"Downloads" 3. 打开页面底部的“Community(GPL) Downloads” 4. 在页面中间的位置找到我们windows上要用的下载页面“MySQL on Windows(Installer & Tools)” 5. 选择第一项&quo

windows10上安装 .NET Framework 3.5

在安装一些软件时,需要 .NET Framework3.5.按照windows给的提示下载不了.在官方网站上给了解决方案: 运行 DISM 工具 从屏幕右边缘向中间轻扫,然后点击“搜索”.(如果使用的是鼠标,则指向屏幕右下角,然后将鼠标指针向上移动,再单击“搜索”.) 在搜索框中输入命令提示符. 在结果列表中,长按或右键单击“命令提示符”,然后点击或单击“以管理员身份运行”.  系统可能要求你提供管理员密码或确认你的选择. 在“管理员: 命令提示符”窗口中,键入以下命令. 在每项命令后按 Ent

Windows10上安装EDEM2.7

这次我们来安装EDEM2.7. 安装软件来自于互联网,本文仅作学习交流之用,工程应用请购买正版. 1 软件准备 从网上找到EDEM2.7安装包,解压后里面包含两个文件,如下图所示. 2 软件安装 鼠标双击安装文件EDEM_2.7.0_win64.exe 点击Next进入 选择下图所示选项 点击Next按钮进入下一步. 选择I accept- 点击Next按钮进入下一步. 选择Custom方式进行安装. 如下图所示,选择安装license Tools及Licesne Manager,根据需要修改安

MPI 在Windows10 上安装,使用VS2013编译生成可执行程序

参考博客: http://www.cnblogs.com/shixiangwan/p/6626156.html   http://www.cnblogs.com/hantan2008/p/5390375.html 系统环境: Windows10 (Windows7及以上均可以) 64bit VS2013 1. 下载并安装MPICH For Windows 进入http://www.mpich.org/downloads/站点根据操作系统下载.由于我们使用的是Windows,拉到下载网页最底部,最

windows10上安装docker与碰到的坑

一.下载docker 去docker官网  : https://www.docker.com/ 下载好之后,运行: 二.安装docker 运行 DockerToolbox之后,直接一路next安装就行了.安装完成后桌面上会有这个docker quickstart terminal,双击运行. 三.运行docker quickstart terminal出现的坑. 1.  Docker Quickstart Terminal 桌面快捷键提示找不到应用程序 解决:https://blog.csdn.

Windows10上安装集成开发环境wampserver3.1.0

为什么安装wamp3.1.0呢?当然是为了使用php7咯 点击进入wampserver下载地址 本以为下载后,执行exe文件,点next就搞定了,结果整了几个小时,想哭,一直报错.... 比如缺失: msvcr110.dll  msvcr120.dll 等等 解决办法 step1: 下载 Visual C++ Redistributable for Visual Studio 2015 [点击可进入下载页面] 并安装,可以根据你的系统选择32位或64位进行下载,如果已下载可以跳过这一步. ps:

Windows10 上安装 Anaconda 后命令提示符(cmd)下无法执行python命令解决方案

原文:https://blog.csdn.net/qq_38644840/article/details/85064408 安装Anaconda后一段时间内能够在命令提示符(cmd)界面运行python会进入python的交互界面!可是一段时间后突然间后突然运行不通过报错如图一所示. 安装Anaconda后(cmd)界面运行pip报错也是这样操作,只是环境变量路径是Anaconda3安装路径下的Scripts路径(E:\Anaconda3\Scripts). ? 然后我们找到路径"C:\Prog

在windows10上安装debian8.4无法启动

使用U盘进入引导界面 按C grub>set root=(hd1,gtp10) grub>ls /    this to see boot grub> ls /boot/ you can see vmlinz-3.16.0-4-amd64 initrd.img-3.16.0-4-amd64 grub>linux /boot/vmlinz-3.16.0-4-amd64 root=/dev/sda10 grub> initrd /boot/initrd.img-3.16.0-4-