安装thinkphp5
一.git安装(git可以保持最新版本)
1.thinkphp 的github 代码版本地址:https://github.com/top-think
thinkPHP5.0 拆分为多个仓库,主要包括:
应用项目:https://github.com/top-think/think
核心框架:https://github.com/top-think/framework
[ 码云 ](国内)
- 应用项目:
https://gitee.com/liu21st/thinkphp
- 核心框架:
https://gitee.com/liu21st/framework
[ Coding ](国内)
- 应用项目:
https://git.coding.net/liu21st/thinkphp5.git
- 核心框架:
https://git.coding.net/liu21st/framework.git
2.打开Git终端 切换到需要安装的目录,克隆下载应用项目仓库
git clone --depth=1 https://github.com/top-think/think.git think_git --depth=1 代表 不下载历史版本 去除即下载全部版本 后面跟地址 think_git为安装的目录或 git clone https://gitee.com/liu21st/thinkphp think_git 因为核心框架还没下载,所以报错 3.切换到think_git目录,并克隆核心框架仓库 cd think_git/ git clone --depth=1 https://github.com/top-think/framework.git thinkphp或git clone https://gitee.com/liu21st/framework thinkphp
可看到此时核心框架版本是tp6.0,再看看其他版本。
这是应用项目的版本
可是安装了thinkphp核心目录还是出现上述错误,这是因为尽管你已经下载了Thinkphp框架代码并且把他放入到你的web服务器上,但是这里仍然缺少了依赖性。为了能够让Thinkphp正常运行,应该安装这些缺少的依赖。
解决办法:
为了解决这个错误,你需要使用composer去安装缺少的依赖。Composer是PHP的一个依赖性包管理工具。如果你的系统中还没有安装composer,你需要第一时间安装它。你可以去官网下载composer: https://getcomposer.org.然后配置composer全局环境变量。
在安装的目录下打开命令行输入:
composer create-project topthink/think 要安装的目录名xxx
这将会创建一个xxx目录并在目录中安装Thinkphp文件。-这还将安装所有必须的依赖以运行Thinkphp.
二.composer 安装
相关推荐
K先生 2020-11-10
wushengyong 2020-10-28
FellowYourHeart 2020-10-05
YClimb 2020-09-15
gaosf 2020-06-14
Hesland 2020-06-14
fanfangood 2020-06-14
稳哥的小灶 2020-05-29
小周 2020-04-30
gaosf 2020-04-25
小周 2020-04-25
FellowYourHeart 2020-04-25
稳哥的小灶 2020-04-25
FellowYourHeart 2020-04-23
ThinkPHP 2020-03-28
doupoo 2020-01-28