1、安装
2023年12月03日
// 清除索引缓存,保证用的是镜像站提供的索引 conda clean -i // 查看当前的环境信息 conda info //查看已经创建的所有虚拟环境 conda info -e // 切换到name虚拟环境 conda activate name //exmple:切换到python3.7的虚拟环境 conda activate python3.7 // 关闭到name虚拟环境 conda deactivate name //exmple:关闭python3.7的虚拟环境 conda deactivate python3.7 // 切换到32位 set CONDA_FORCE_32BIT=1 //切换到64位 set CONDA_FORCE_32BIT=0 // 创建一名字为xxx的python3.8的虚拟环境,其中xxx表示给这个环境取的名字,等号后面表示的是安装环境的版本号 conda create -n xxx python=3.8 // 在某个环境中安装模块的时候必须先激活该环境,然后在该环境中进行安装 conda install 环境名 // 删除某个环境 conda remove -n 环境名 --all // 列出包 conda list //为某个目录创建虚拟环境,库安装在这个目录 conda create --prefix ./my_project_env python=3.8 //导出环境 conda env export > environment.yml //共享环境 conda env create -f environment.yml
2023年08月22日
[Docker微服务-Dockerfile之Nginx+PHP](https://flowus.cn/f4bc4b97-e215-4d3c-b6bf-c0f2591ddebd)
[alpine-nginx安装php80](https://flowus.cn/94801b49-b0b0-40d0-a029-337322d83c9f)
[linux编译openssl报错,alpine编译openssl1.1.1g报错解决](https://flowus.cn/c812844a-3116-4170-b3a5-aee680ab9a39)
2023年06月28日
使用使用
插入语句的事务
<?php use Illuminate\Support\Facades\DB; DB::beginTransaction(); try { DB::table('users')->insert([ 'name' => 'John Doe', 'email' => 'johndoe@example.com', 'password' => bcrypt('password'), ]); DB::table('orders')->insert([ 'user_id' => 1, 'product' => 'Laravel book', 'price' => 29.99, ]); DB::commit(); } catch (\Exception $e) { DB::rollback(); throw $e; }
2019年05月05日
2019年05月05日
2019年03月08日
2019年03月04日
2019年03月04日
2019年02月27日
Powered By Z-BlogPHP 1.7.3
冀公网安备13019902000834
冀ICP备18019600号-1
Copyright CC Some Rights Reserved.Contact Email:chengyingbo88@163.com