积分充值
 首页
前端开发
AngularDartElectronFlutterHTML/CSSJavaScriptReactSvelteTypeScriptVue.js构建工具
后端开发
.NetC#C++C语言DenoffmpegGoIdrisJavaJuliaKotlinLeanMakefilenimNode.jsPascalPHPPythonRISC-VRubyRustSwiftUML其它语言区块链开发测试微服务敏捷开发架构设计汇编语言
数据库
Apache DorisApache HBaseCassandraClickHouseFirebirdGreenplumMongoDBMySQLPieCloudDBPostgreSQLRedisSQLSQLiteTiDBVitess数据库中间件数据库工具数据库设计
系统运维
AndroidDevOpshttpdJenkinsLinuxPrometheusTraefikZabbix存储网络与安全
云计算&大数据
Apache APISIXApache FlinkApache KarafApache KyuubiApache OzonedaprDockerHadoopHarborIstioKubernetesOpenShiftPandasrancherRocketMQServerlessService MeshVirtualBoxVMWare云原生CNCF机器学习边缘计算
综合其他
BlenderGIMPKiCadKritaWeblate产品与服务人工智能亿图数据可视化版本控制笔试面试
文库资料
前端
AngularAnt DesignBabelBootstrapChart.jsCSS3EchartsElectronHighchartsHTML/CSSHTML5JavaScriptJerryScriptJestReactSassTypeScriptVue前端工具小程序
后端
.NETApacheC/C++C#CMakeCrystalDartDenoDjangoDubboErlangFastifyFlaskGinGoGoFrameGuzzleIrisJavaJuliaLispLLVMLuaMatplotlibMicronautnimNode.jsPerlPHPPythonQtRPCRubyRustR语言ScalaShellVlangwasmYewZephirZig算法
移动端
AndroidAPP工具FlutterFramework7HarmonyHippyIoniciOSkotlinNativeObject-CPWAReactSwiftuni-appWeex
数据库
ApacheArangoDBCassandraClickHouseCouchDBCrateDBDB2DocumentDBDorisDragonflyDBEdgeDBetcdFirebirdGaussDBGraphGreenPlumHStreamDBHugeGraphimmudbIndexedDBInfluxDBIoTDBKey-ValueKitDBLevelDBM3DBMatrixOneMilvusMongoDBMySQLNavicatNebulaNewSQLNoSQLOceanBaseOpenTSDBOracleOrientDBPostgreSQLPrestoDBQuestDBRedisRocksDBSequoiaDBServerSkytableSQLSQLiteTiDBTiKVTimescaleDBYugabyteDB关系型数据库数据库数据库ORM数据库中间件数据库工具时序数据库
云计算&大数据
ActiveMQAerakiAgentAlluxioAntreaApacheApache APISIXAPISIXBFEBitBookKeeperChaosChoerodonCiliumCloudStackConsulDaprDataEaseDC/OSDockerDrillDruidElasticJobElasticSearchEnvoyErdaFlinkFluentGrafanaHadoopHarborHelmHudiInLongKafkaKnativeKongKubeCubeKubeEdgeKubeflowKubeOperatorKubernetesKubeSphereKubeVelaKumaKylinLibcloudLinkerdLonghornMeiliSearchMeshNacosNATSOKDOpenOpenEBSOpenKruiseOpenPitrixOpenSearchOpenStackOpenTracingOzonePaddlePaddlePolicyPulsarPyTorchRainbondRancherRediSearchScikit-learnServerlessShardingSphereShenYuSparkStormSupersetXuperChainZadig云原生CNCF人工智能区块链数据挖掘机器学习深度学习算法工程边缘计算
UI&美工&设计
BlenderKritaSketchUI设计
网络&系统&运维
AnsibleApacheAWKCeleryCephCI/CDCurveDevOpsGoCDHAProxyIstioJenkinsJumpServerLinuxMacNginxOpenRestyPrometheusServertraefikTrafficUnixWindowsZabbixZipkin安全防护系统内核网络运维监控
综合其它
文章资讯
 上传文档  发布文章  登录账户
IT文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部后端开发(372)Python(372)Jupyter(62)Scrapy(58)Django(54)Celery(51)Tornado(20)ORM(16)Conda(16)Flask(11)

语言

全部英语(354)中文(简体)(12)法语(2)中文(繁体)(1)英语(1)

格式

全部PDF文档 PDF(205)其他文档 其他(167)
 
本次搜索耗时 0.070 秒,为您找到相关结果约 372 个.
  • 全部
  • 后端开发
  • Python
  • Jupyter
  • Scrapy
  • Django
  • Celery
  • Tornado
  • ORM
  • Conda
  • Flask
  • 全部
  • 英语
  • 中文(简体)
  • 法语
  • 中文(繁体)
  • 英语
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Flask入门教程

    实现的终端模拟器) 来代 替系统自带的 cmd.exe,或是使用安装 Git for Windows 后(下一节)附带的 Git Bash。cmder 集成了 Git Bash,支持一些在 Linux 或 macOS 下才能使用的命令 (程序),比如 ls、cat、nano、ssh 等,这些命令我们在后面会用到。 使用 Git Git 是一个流行的版本控制工具,我们可以用它来记录程序源码和文件的变动情 如果你还不熟悉 Git 也没关系,可以先按照书中的命令去做,有时间再去了解原 理。现在要做的第一件事就是在你的电脑上安装 Git (可以执行 git --help 命 令检查是否已经安装,没有提示“命令未找到(Command not found)”则表示已安 装)。 安装后可以在命令行先使用使用下面的命令查看版本,没有报错则表示已正确安 装: $ git --version git version 为了让 Git 知道你是谁,以便在提交代码到版本仓库的时候进行记录,使用下面的 命令设置你的信息: $ git config --global user.name "Grey Li" # 替换成你的名字 $ git config --global user.email "withlihui@gmail.com" # 替换成 你的邮箱地址 现在为我们的项目文件夹创建一个 Git 仓库,这会在我们的项目根目录创建一个
    0 码力 | 127 页 | 7.62 MB | 1 年前
    3
  • pdf文档 MuPDF 1.23.0 Documentation

    canonical git repository: git clone --recursive git://git.ghostscript.com/mupdf.git. Note: If you have checked out a git repo then in the “mupdf” directory, update the third party libraries with: git submodule files mupdf-wasm.js, mupdf-wasm.wasm & mupdf.js into platform/wasm/lib in your local checkout of mupdf.git. Then you can open platform/wasm/viewer/mupdf-view.html to try it out. Note: You need to run this Stories. • 2023-01-12: New release of Python package mupdf-1.21.1.20230112.1504 (from mupdf-1.21.x git 04c75ec9db31), with pre-built Wheels for Windows and Linux. See: https://pypi.org/project/mupdf –
    0 码力 | 245 页 | 817.74 KB | 7 月前
    3
  • pdf文档 MuPDF 1.24.0 Documentation

    canonical git repository: git clone --recursive git://git.ghostscript.com/mupdf.git. Note: If you have checked out a git repo then in the “mupdf” directory, update the third party libraries with: git submodule files mupdf-wasm.js, mupdf-wasm.wasm & mupdf.js into platform/wasm/lib in your local checkout of mupdf.git. Then you can open platform/wasm/viewer/mupdf-view.html to try it out. Note: You need to run this Stories. • 2023-01-12: New release of Python package mupdf-1.21.1.20230112.1504 (from mupdf-1.21.x git 04c75ec9db31), with pre-built Wheels for Windows and Linux. See: https://pypi.org/project/mupdf 7
    0 码力 | 249 页 | 830.15 KB | 7 月前
    3
  • pdf文档 MuPDF 1.25.0 Documentation

    canonical git repository: git clone --recursive git://git.ghostscript.com/mupdf.git. Note: If you have checked out a git repo then in the “mupdf” directory, update the third party libraries with: git submodule files mupdf-wasm.js, mupdf-wasm.wasm & mupdf.js into platform/wasm/lib in your local checkout of mupdf.git. Then you can open platform/wasm/viewer/mupdf-view.html to try it out. Note: You need to run this and build files. All platforms • Get the latest version of MuPDF in git. git clone --recursive git://git.ghostscript.com/mupdf.git • Create and enter a Python venv and upgrade pip. – Windows. py -m
    0 码力 | 259 页 | 1.11 MB | 7 月前
    3
  • pdf文档 Django 官方教程翻译项目

    当 Django 增加新特性,以及 Django API 或者其行为发生改变时,会补充相关内容到文档 中。 Django 文档和其代码使用同一份版本控制进行管理。它位于我们 Git 仓库的 docs 目录下。在 Git 仓库中,每一份在线文档都是独立的文本文件。 您可以通过多种方式阅读 Django 文档,根据优先级顺序排列如下: 文档是如何更新的 哪里可以获取文档 在线获取 接下来如何学习? (tarball)的 docs/ 的目录下。 如果您正在使用开发版本的 Django (又名”trunk 版本”),请注意 docs/ 目录包含了所有的 文档。您可以通过 git checkout 来获取最新更新。 一个稍微有点技术含量的查看文档的方法是通过 Unix 系统的 grep 命令来查找关键字搜索文 档。例如,这将会展示 Django 文档中每一处提及” docs/_build/html 中。 正如前面提及的那样,我们 Git 仓库中的文档包含了许多“最新最好”的改变。这些改变通常包括了 Django 开发版本新增的一些特性。因此出于以上理由,有必要说明我们在处理不同 Django 版本 文档时所遵循的准则。 我们遵循着如下准则: 在 djangoproject.com 呈现的内容始终是 Git 仓库最新文档的 HTML 版本。这些文档总 是对应 Django
    0 码力 | 103 页 | 1.86 MB | 1 年前
    3
  • pdf文档 Celery 2.5 Documentation

    the development version You can clone the repository by doing the following: $ git clone git://github.com/celery/celery.git 1.2 Brokers Release 2.5 Date February 04, 2014 Celery supports several message actually a git repository, so to install Homebrew, you first need to install git. Download and install from the disk image at http://code.google.com/p/git-osx-installer/downloads/list?can=3 When git is installed repository, storing it at the /lol location: 1.2. Brokers 7 Celery Documentation, Release 2.5.5 $ git clone git://github.com/mxcl/homebrew /lol Brew comes with a simple utility called brew, used to install
    0 码力 | 400 页 | 1.40 MB | 1 年前
    3
  • epub文档 Celery 2.5 Documentation

    the development version You can clone the repository by doing the following: $ git clone git://github.com/celery/celery.git © Copyright 2009-2012, Ask Solem & Contributors. index modules | next | previous Homebrew is actually a git [http://git-scm.org] repository, so to install Homebrew, you first need to install git. Download and install from the disk image at http://code.google.com/p/git-osx-installer/downloads/list nloads/list?can=3 When git is installed you can finally clone the repository, storing it at the /lol location: $ git clone git://github.com/mxcl/homebrew /lol Brew comes with a simple utility called
    0 码力 | 647 页 | 1011.88 KB | 1 年前
    3
  • epub文档 Celery 1.0 Documentation

    the development version You can clone the repository by doing the following: $ git clone git://github.com/ask/celery.git © Copyright 2009, Ask Solem. Created using Sphinx 1.2. index modules | next | Homebrew is actually a git [http://git-scm.org] repository, so to install homebrew, you first need to install git. Download and install from the disk image at http://code.google.com/p/git-osx-installer/downloads/list nloads/list?can=3 When git is installed you can finally clone the repo, storing it at the /lol location: $ git clone git://github.com/mxcl/homebrew /lol Brew comes with a simple utility called brew
    0 码力 | 221 页 | 283.64 KB | 1 年前
    3
  • pdf文档 websockets Documentation Release 9.0

    to Heroku requires a git repository. Let’s initialize one: $ mkdir websockets-echo $ cd websockets-echo $ git init . Initialized empty Git repository in websockets-echo/.git/ $ git commit --allow-empty Creating websockets-echo... done https://websockets-echo.herokuapp.com/ | https://git.heroku.com/websockets-echo.git Here’s the implementation of the app, an echo server. Save it in a file called app them to git: $ ls Procfile app.py requirements.txt (continues on next page) 2.4. Deploying to Heroku 25 websockets Documentation, Release 9.0 (continued from previous page) $ git add . $ git commit
    0 码力 | 81 页 | 352.88 KB | 1 年前
    3
  • pdf文档 Celery 1.0 Documentation

    the development version You can clone the repository by doing the following: $ git clone git://github.com/ask/celery.git 1.2 Broker Installation 1.2.1 Installing RabbitMQ See Installing RabbitMQ over actually a git repository, so to install homebrew, you first need to install git. Download and install from the disk image at http://code.google.com/p/git-osx-installer/downloads/list?can=3 When git is installed installed you can finally clone the repo, storing it at the /lol location: $ git clone git://github.com/mxcl/homebrew /lol Brew comes with a simple utility called brew, used to install, remove and query
    0 码力 | 123 页 | 400.69 KB | 1 年前
    3
共 372 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 38
前往
页
相关搜索词
Flask入门教程入门教程MuPDF1.23Documentation1.241.25Django官方翻译项目Celery2.51.0websocketsRelease9.0
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩