- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试构建一个包含 PHP 应用程序的 Docker 镜像。
此应用程序通过composer.json安装一些依赖项,并且在安装composer后,需要完成一些自定义(例如,必须将某些文件从供应商文件夹复制到其他位置等)。
因此,我将这些步骤编写为 bash 命令,并将其放入composer.json post-install-cmd 部分中。
这是我的composer.json(我省略了细节,但结构是相同的):
{
"name": "MyApp",
"description": "My Service",
"type": "project",
"repositories": {
"a-fancy-library-i-depend-on": {
"type": "package",
"package": {
"name": "a-fancy-library-i-depend-on",
"version": "1.0",
"source": {
"url": "https://github.com/a-fancy-library-i-depend-on",
"type": "git",
"reference": "master"
}
}
},
},
"require": {
"symfony/filesystem": "5.2.6",
"symfony/yaml": "^4.2"
},
"require-dev": {
"a-fancy-library-i-depend-on": "*"
},
"scripts": {
"post-install-cmd": [
"rm -rf ./src/setup",
"cp -r vendor/a-fancy-library-i-depend-on/setup/ ./src/setup",
"mkdir vendor/a-fancy-library-i-depend-on/log"
]
},
"autoload": {
"classmap": [
"src/"
]
},
"config": {
"allow-plugins": {
"a-fancy-library-i-depend-on/composer-module-installer": true
}
}
}
在我的 Dockerfile 中,我包含了运行 Composer 安装的步骤:
FROM php:7.4.20-fpm
RUN apt-get update && apt-get install -y git zlib1g-dev libzip-dev libpng-dev libicu-dev g++ zip unzip
RUN docker-php-ext-install zip gd intl
RUN docker-php-ext-configure intl
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
ADD code /code
WORKDIR /code
RUN composer install
问题是“安装后”脚本未执行。
镜像构建成功,但安装文件夹为空。
如果我从此镜像运行容器并在其上输入 bash
docker container run -ti my-image:local bash
然后我尝试运行
# composer install
瞧!脚本被执行。
这是构建镜像命令的 Composer 安装阶段输出:
Step 10/15 : RUN composer install
---> Running in af5ffb3ef4e9
No composer.lock file present. Updating dependencies to latest instead of installing from lock file. See https://getcomposer.org/install for more information.
Loading composer repositories with package information
Updating dependencies
Lock file operations: 76 installs, 0 updates, 0 removals
- Locking gettext/gettext (v4.8.6)
- Locking gettext/languages (2.9.0)
- Locking phpfastcache/riak-client (3.4.3)
- Locking phpmailer/phpmailer (v6.5.3)
- Locking psr/cache (1.0.1)
- Locking psr/container (1.1.2)
- Locking psr/event-dispatcher (1.0.0)
- Locking psr/log (1.1.4)
- Locking robrichards/xmlseclibs (3.1.1)
- Locking simplesamlphp/assert (v0.0.13)
- Locking simplesamlphp/composer-module-installer (v1.1.8)
- Locking simplesamlphp/saml2 (v4.4.0)
- Locking simplesamlphp/simplesamlphp (v1.19.4)
- Locking simplesamlphp/simplesamlphp-module-adfs (v0.9.9)
- Locking simplesamlphp/simplesamlphp-module-authcrypt (v0.9.4)
- Locking simplesamlphp/simplesamlphp-module-authfacebook (v0.9.3)
- Locking simplesamlphp/simplesamlphp-module-authorize (v0.9.4)
- Locking simplesamlphp/simplesamlphp-module-authtwitter (v0.9.3)
- Locking simplesamlphp/simplesamlphp-module-authwindowslive (v0.9.1)
- Locking simplesamlphp/simplesamlphp-module-authx509 (v0.9.9)
- Locking simplesamlphp/simplesamlphp-module-authyubikey (v0.9.3)
- Locking simplesamlphp/simplesamlphp-module-cas (v0.9.1)
- Locking simplesamlphp/simplesamlphp-module-cdc (v0.9.2)
- Locking simplesamlphp/simplesamlphp-module-consent (v0.9.8)
- Locking simplesamlphp/simplesamlphp-module-consentadmin (v0.9.2)
- Locking simplesamlphp/simplesamlphp-module-discopower (v0.10.1)
- Locking simplesamlphp/simplesamlphp-module-exampleattributeserver (v1.0.0)
- Locking simplesamlphp/simplesamlphp-module-expirycheck (v0.9.4)
- Locking simplesamlphp/simplesamlphp-module-ldap (v0.9.17)
- Locking simplesamlphp/simplesamlphp-module-memcachemonitor (v0.9.3)
- Locking simplesamlphp/simplesamlphp-module-memcookie (v1.2.2)
- Locking simplesamlphp/simplesamlphp-module-metarefresh (v0.9.7)
- Locking simplesamlphp/simplesamlphp-module-negotiate (v0.9.12)
- Locking simplesamlphp/simplesamlphp-module-oauth (v0.9.3)
- Locking simplesamlphp/simplesamlphp-module-preprodwarning (v0.9.3)
- Locking simplesamlphp/simplesamlphp-module-radius (v0.9.4)
- Locking simplesamlphp/simplesamlphp-module-riak (v0.9.1)
- Locking simplesamlphp/simplesamlphp-module-sanitycheck (v0.9.1)
- Locking simplesamlphp/simplesamlphp-module-smartattributes (v0.9.2)
- Locking simplesamlphp/simplesamlphp-module-sqlauth (v0.9.4)
- Locking simplesamlphp/simplesamlphp-module-statistics (v0.9.6)
- Locking simplesamlphp/twig-configurable-i18n (v2.3.4)
- Locking symfony/cache (v5.4.2)
- Locking symfony/cache-contracts (v2.5.0)
- Locking symfony/config (v5.4.2)
- Locking symfony/console (v5.4.2)
- Locking symfony/dependency-injection (v5.4.2)
- Locking symfony/deprecation-contracts (v2.5.0)
- Locking symfony/error-handler (v5.4.2)
- Locking symfony/event-dispatcher (v5.4.0)
- Locking symfony/event-dispatcher-contracts (v2.5.0)
- Locking symfony/filesystem (v5.2.6)
- Locking symfony/finder (v5.4.2)
- Locking symfony/framework-bundle (v5.4.2)
- Locking symfony/http-foundation (v5.4.2)
- Locking symfony/http-kernel (v5.4.2)
- Locking symfony/polyfill-ctype (v1.24.0)
- Locking symfony/polyfill-intl-grapheme (v1.24.0)
- Locking symfony/polyfill-intl-normalizer (v1.24.0)
- Locking symfony/polyfill-mbstring (v1.24.0)
- Locking symfony/polyfill-php72 (v1.24.0)
- Locking symfony/polyfill-php73 (v1.24.0)
- Locking symfony/polyfill-php80 (v1.24.0)
- Locking symfony/polyfill-php81 (v1.24.0)
- Locking symfony/routing (v5.4.0)
- Locking symfony/service-contracts (v2.5.0)
- Locking symfony/string (v5.4.2)
- Locking symfony/var-dumper (v5.4.2)
- Locking symfony/var-exporter (v5.4.2)
- Locking symfony/yaml (v4.4.36)
- Locking twig/extensions (v1.5.4)
- Locking twig/twig (v2.14.10)
- Locking webmozart/assert (1.10.0)
- Locking whitehat101/apr1-md5 (v1.0.0)
Writing lock file
Installing dependencies from lock file (including require-dev)
Package operations: 76 installs, 0 updates, 0 removals
- Downloading symfony/polyfill-php72 (v1.24.0)
- Downloading symfony/polyfill-mbstring (v1.24.0)
- Downloading symfony/polyfill-ctype (v1.24.0)
- Downloading twig/twig (v2.14.10)
- Downloading symfony/yaml (v4.4.36)
- Downloading symfony/polyfill-php80 (v1.24.0)
- Downloading symfony/var-exporter (v5.4.2)
- Downloading symfony/deprecation-contracts (v2.5.0)
- Downloading symfony/routing (v5.4.0)
- Downloading symfony/polyfill-php73 (v1.24.0)
- Downloading symfony/http-foundation (v5.4.2)
- Downloading psr/event-dispatcher (1.0.0)
- Downloading symfony/event-dispatcher-contracts (v2.5.0)
- Downloading symfony/event-dispatcher (v5.4.0)
- Downloading symfony/var-dumper (v5.4.2)
- Downloading psr/log (1.1.4)
- Downloading symfony/error-handler (v5.4.2)
- Downloading symfony/http-kernel (v5.4.2)
- Downloading symfony/polyfill-php81 (v1.24.0)
- Downloading symfony/finder (v5.4.2)
- Downloading symfony/filesystem (v5.2.6)
- Downloading psr/container (1.1.2)
- Downloading symfony/service-contracts (v2.5.0)
- Downloading symfony/dependency-injection (v5.4.2)
- Downloading symfony/config (v5.4.2)
- Downloading psr/cache (1.0.1)
- Downloading symfony/cache-contracts (v2.5.0)
- Downloading symfony/cache (v5.4.2)
- Downloading symfony/framework-bundle (v5.4.2)
- Downloading symfony/polyfill-intl-normalizer (v1.24.0)
- Downloading symfony/polyfill-intl-grapheme (v1.24.0)
- Downloading symfony/string (v5.4.2)
- Downloading symfony/console (v5.4.2)
- Downloading twig/extensions (v1.5.4)
- Downloading simplesamlphp/twig-configurable-i18n (v2.3.4)
- Downloading simplesamlphp/simplesamlphp (v1.19.4)
- Downloading simplesamlphp/composer-module-installer (v1.1.8)
- Downloading gettext/languages (2.9.0)
- Downloading webmozart/assert (1.10.0)
- Downloading simplesamlphp/simplesamlphp-module-statistics (v0.9.6)
- Downloading simplesamlphp/simplesamlphp-module-sqlauth (v0.9.4)
- Downloading simplesamlphp/simplesamlphp-module-smartattributes (v0.9.2)
- Downloading simplesamlphp/simplesamlphp-module-sanitycheck (v0.9.1)
- Downloading phpfastcache/riak-client (3.4.3)
- Downloading simplesamlphp/simplesamlphp-module-riak (v0.9.1)
- Downloading simplesamlphp/simplesamlphp-module-radius (v0.9.4)
- Downloading simplesamlphp/simplesamlphp-module-preprodwarning (v0.9.3)
- Downloading simplesamlphp/simplesamlphp-module-oauth (v0.9.3)
- Downloading simplesamlphp/simplesamlphp-module-ldap (v0.9.17)
- Downloading simplesamlphp/simplesamlphp-module-negotiate (v0.9.12)
- Downloading simplesamlphp/simplesamlphp-module-metarefresh (v0.9.7)
- Downloading simplesamlphp/simplesamlphp-module-memcookie (v1.2.2)
- Downloading simplesamlphp/simplesamlphp-module-memcachemonitor (v0.9.3)
- Downloading simplesamlphp/simplesamlphp-module-expirycheck (v0.9.4)
- Downloading simplesamlphp/simplesamlphp-module-exampleattributeserver (v1.0.0)
- Downloading simplesamlphp/simplesamlphp-module-discopower (v0.10.1)
- Downloading simplesamlphp/simplesamlphp-module-consent (v0.9.8)
- Downloading simplesamlphp/simplesamlphp-module-consentadmin (v0.9.2)
- Downloading simplesamlphp/simplesamlphp-module-cdc (v0.9.2)
- Downloading simplesamlphp/simplesamlphp-module-cas (v0.9.1)
- Downloading simplesamlphp/simplesamlphp-module-authyubikey (v0.9.3)
- Downloading simplesamlphp/simplesamlphp-module-authx509 (v0.9.9)
- Downloading simplesamlphp/simplesamlphp-module-authwindowslive (v0.9.1)
- Downloading simplesamlphp/simplesamlphp-module-authtwitter (v0.9.3)
- Downloading simplesamlphp/simplesamlphp-module-authorize (v0.9.4)
- Downloading simplesamlphp/simplesamlphp-module-authfacebook (v0.9.3)
- Downloading whitehat101/apr1-md5 (v1.0.0)
- Downloading simplesamlphp/simplesamlphp-module-authcrypt (v0.9.4)
- Downloading simplesamlphp/simplesamlphp-module-adfs (v0.9.9)
- Downloading robrichards/xmlseclibs (3.1.1)
- Downloading simplesamlphp/saml2 (v4.4.0)
- Downloading simplesamlphp/assert (v0.0.13)
- Downloading phpmailer/phpmailer (v6.5.3)
- Downloading gettext/gettext (v4.8.6)
0/74 [>---------------------------] 0%
3/74 [=>--------------------------] 4%
12/74 [====>-----------------------] 16%
20/74 [=======>--------------------] 27%
27/74 [==========>-----------------] 36%
33/74 [============>---------------] 44%
37/74 [==============>-------------] 50%
39/74 [==============>-------------] 52%
43/74 [================>-----------] 58%
44/74 [================>-----------] 59%
47/74 [=================>----------] 63%
51/74 [===================>--------] 68%
54/74 [====================>-------] 72%
58/74 [=====================>------] 78%
62/74 [=======================>----] 83%
63/74 [=======================>----] 85%
67/74 [=========================>--] 90%
73/74 [===========================>] 98%
74/74 [============================] 100%
- Installing symfony/polyfill-php72 (v1.24.0): Extracting archive
- Installing symfony/polyfill-mbstring (v1.24.0): Extracting archive
- Installing symfony/polyfill-ctype (v1.24.0): Extracting archive
- Installing twig/twig (v2.14.10): Extracting archive
- Installing symfony/yaml (v4.4.36): Extracting archive
- Installing symfony/polyfill-php80 (v1.24.0): Extracting archive
- Installing symfony/var-exporter (v5.4.2): Extracting archive
- Installing symfony/deprecation-contracts (v2.5.0): Extracting archive
- Installing symfony/routing (v5.4.0): Extracting archive
- Installing symfony/polyfill-php73 (v1.24.0): Extracting archive
- Installing symfony/http-foundation (v5.4.2): Extracting archive
- Installing psr/event-dispatcher (1.0.0): Extracting archive
- Installing symfony/event-dispatcher-contracts (v2.5.0): Extracting archive
- Installing symfony/event-dispatcher (v5.4.0): Extracting archive
- Installing symfony/var-dumper (v5.4.2): Extracting archive
- Installing psr/log (1.1.4): Extracting archive
- Installing symfony/error-handler (v5.4.2): Extracting archive
- Installing symfony/http-kernel (v5.4.2): Extracting archive
- Installing symfony/polyfill-php81 (v1.24.0): Extracting archive
- Installing symfony/finder (v5.4.2): Extracting archive
- Installing symfony/filesystem (v5.2.6): Extracting archive
- Installing psr/container (1.1.2): Extracting archive
- Installing symfony/service-contracts (v2.5.0): Extracting archive
- Installing symfony/dependency-injection (v5.4.2): Extracting archive
- Installing symfony/config (v5.4.2): Extracting archive
- Installing psr/cache (1.0.1): Extracting archive
- Installing symfony/cache-contracts (v2.5.0): Extracting archive
- Installing symfony/cache (v5.4.2): Extracting archive
- Installing symfony/framework-bundle (v5.4.2): Extracting archive
- Installing symfony/polyfill-intl-normalizer (v1.24.0): Extracting archive
- Installing symfony/polyfill-intl-grapheme (v1.24.0): Extracting archive
- Installing symfony/string (v5.4.2): Extracting archive
- Installing symfony/console (v5.4.2): Extracting archive
- Installing twig/extensions (v1.5.4): Extracting archive
- Installing simplesamlphp/twig-configurable-i18n (v2.3.4): Extracting archive
- Installing simplesamlphp/simplesamlphp (v1.19.4): Extracting archive
0/36 [>---------------------------] 0%
10/36 [=======>--------------------] 27%
20/36 [===============>------------] 55%
30/36 [=======================>----] 83%
35/36 [===========================>] 97%
36/36 [============================] 100%
- Installing simplesamlphp/composer-module-installer (v1.1.8): Extracting archive
- Installing gettext/languages (2.9.0): Extracting archive
- Installing webmozart/assert (1.10.0): Extracting archive
- Installing simplesamlphp/simplesamlphp-module-statistics (v0.9.6): Extracting archive
- Installing simplesamlphp/simplesamlphp-module-sqlauth (v0.9.4): Extracting archive
- Installing simplesamlphp/simplesamlphp-module-smartattributes (v0.9.2): Extracting archive
- Installing simplesamlphp/simplesamlphp-module-sanitycheck (v0.9.1): Extracting archive
- Installing phpfastcache/riak-client (3.4.3): Extracting archive
- Installing simplesamlphp/simplesamlphp-module-riak (v0.9.1): Extracting archive
- Installing simplesamlphp/simplesamlphp-module-radius (v0.9.4): Extracting archive
- Installing simplesamlphp/simplesamlphp-module-preprodwarning (v0.9.3): Extracting archive
- Installing simplesamlphp/simplesamlphp-module-oauth (v0.9.3): Extracting archive
- Installing simplesamlphp/simplesamlphp-module-ldap (v0.9.17): Extracting archive
- Installing simplesamlphp/simplesamlphp-module-negotiate (v0.9.12): Extracting archive
- Installing simplesamlphp/simplesamlphp-module-metarefresh (v0.9.7): Extracting archive
- Installing simplesamlphp/simplesamlphp-module-memcookie (v1.2.2): Extracting archive
- Installing simplesamlphp/simplesamlphp-module-memcachemonitor (v0.9.3): Extracting archive
- Installing simplesamlphp/simplesamlphp-module-expirycheck (v0.9.4): Extracting archive
- Installing simplesamlphp/simplesamlphp-module-exampleattributeserver (v1.0.0): Extracting archive
- Installing simplesamlphp/simplesamlphp-module-discopower (v0.10.1): Extracting archive
- Installing simplesamlphp/simplesamlphp-module-consent (v0.9.8): Extracting archive
- Installing simplesamlphp/simplesamlphp-module-consentadmin (v0.9.2): Extracting archive
- Installing simplesamlphp/simplesamlphp-module-cdc (v0.9.2): Extracting archive
- Installing simplesamlphp/simplesamlphp-module-cas (v0.9.1): Extracting archive
- Installing simplesamlphp/simplesamlphp-module-authyubikey (v0.9.3): Extracting archive
- Installing simplesamlphp/simplesamlphp-module-authx509 (v0.9.9): Extracting archive
- Installing simplesamlphp/simplesamlphp-module-authwindowslive (v0.9.1): Extracting archive
- Installing simplesamlphp/simplesamlphp-module-authtwitter (v0.9.3): Extracting archive
- Installing simplesamlphp/simplesamlphp-module-authorize (v0.9.4): Extracting archive
- Installing simplesamlphp/simplesamlphp-module-authfacebook (v0.9.3): Extracting archive
- Installing whitehat101/apr1-md5 (v1.0.0): Extracting archive
- Installing simplesamlphp/simplesamlphp-module-authcrypt (v0.9.4): Extracting archive
- Installing simplesamlphp/simplesamlphp-module-adfs (v0.9.9): Extracting archive
- Installing robrichards/xmlseclibs (3.1.1): Extracting archive
- Installing simplesamlphp/saml2 (v4.4.0): Extracting archive
- Installing simplesamlphp/assert (v0.0.13): Extracting archive
- Installing phpmailer/phpmailer (v6.5.3): Extracting archive
- Installing gettext/gettext (v4.8.6): Extracting archive
0/37 [>---------------------------] 0%
10/37 [=======>--------------------] 27%
20/37 [===============>------------] 54%
29/37 [=====================>------] 78%
37/37 [============================] 100%
26 package suggestions were added by new dependencies, use `composer suggest` to see details.
Package simplesamlphp/simplesamlphp-module-authfacebook is abandoned, you should avoid using it. No replacement was suggested.
Package simplesamlphp/simplesamlphp-module-authwindowslive is abandoned, you should avoid using it. No replacement was suggested.
Package simplesamlphp/simplesamlphp-module-oauth is abandoned, you should avoid using it. No replacement was suggested.
Package simplesamlphp/simplesamlphp-module-riak is abandoned, you should avoid using it. No replacement was suggested.
Package twig/extensions is abandoned, you should avoid using it. No replacement was suggested.
Generating autoload files
32 packages you are using are looking for funding.
Use the `composer fund` command to find out more!
Removing intermediate container af5ffb3ef4e9
如何调试这个问题?
最佳答案
请查看 Composer scripts 的文档。它解释得非常明显:
post-install-cmd: occurs after the install command has been executed with a lock file present.
如果您使用composer install
时不存在锁定文件(如控制台输出所示),则不会触发此事件。
关于composer-php - Composer 安装后脚本未执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70788808/
我听说最好不要从您系统的 Perl 版本所在的 CPAN 安装模块。我知道如何使用命令行安装模块,我只是想知道是否有办法将 CPAN 与系统核心 Perl 分开。 我应该: 下载源代码并专门为这些模块
我听说最好不要从系统的 Perl 版本所在的 CPAN 安装模块。我知道如何使用命令行安装模块,我只是想知道是否有办法将 CPAN 与系统的核心 Perl 分开。 我应该: 下载源代码并专门为这些模块
单独安装 electron 与通过 electron-builder 安装有什么区别?我正在使用 React 构建一个 Electron 应用程序,并且已经找到了一些教程。它们安装 Electron
两者安装有什么区别?我按照安装页面上的说明在全局范围内安装了 webpack,然后我转到了入门指南,据说在那里可以在本地安装 webpack-cli。 CLI = Command Line Inter
我在 OS X Yosemite 上用 PHP 安装了默认的 Apache 服务器,安装了 pear,用 brew 安装了 Solr (brew install solr),现在我正在尝试使用 PEC
我解压并编译了 Ruby 2.1 并安装了几个支持工具。 但是当我安装了 libssl-dev 时,OpenSSL 不会安装。 我在支持 openssl 时遇到这个错误: make: *** No r
我在 android studio 2.3.1 和 gradle 3.2 中设计了 2 到 3 个应用程序。当我从它运行应用程序到任何设备或模拟器时,一切都工作正常。但是当我从构建文件夹中获取该 ap
我注意到我正在读一本书提到通过 apt-get 安装 numpy 和 opencv apt-get install python-numpy python-opencv 但我可以通过以下方式在 pip
我正在尝试在 Windows 8.1 上安装 ansicon。我提取了文件并达到了我需要调用 ansicon -i 的级别。当我在 cmd 中输入此内容并运行 python 脚本时效果很好,但是当我通
我有 linux MINT 17.3 Kernel 4.4.0-81 所有更新可用。 (由于不同的原因,我无法迁移到更新版本的 ubuntu/mint) 我已经通过 PPA 安装了 FFMPEG(不是
尝试在本地运行我的应用程序时出现错误: 我只在 chrome 浏览器中收到此错误。我尝试过不同的东西,但我不确定为什么它是 Chrome 特定的。 最佳答案 我怀疑这不是 Firebase 问题,而是
这是我第一次开发 AngularJS 应用程序并使用脚手架工具 Yeoman ( http://yeoman.io/ )。我想对我的一些图标使用 fontawesome ( http://fortaw
我知道您通常“应该”$ pip install 如果包没有 brew ,但如果有一个你想安装的 python 包,你可以使用 $ pip install或 $ brew install为了?例如,通过
我正在尝试通过 RVM 安装 Ruby 1.9.3。然而,当谈到安装 RubyGems 时,我得到了这个: curl: (22) The requested URL returned error: 4
我是真正提出问题的新手,但你去吧。 我一直在尝试按照安装指南添加 dnsname: https://github.com/containers/dnsname https://github.com/c
Studio更新至0.4.0 建筑产量为“需要1.8版Gradle”;将设置设置为1.8 bin目录; 建立 “要求1.9级”;将设置设置为1.9 bin; 建立 “要求1.8级” 啊。不知道该怎么做
我刚刚注意到 kernel.org 因维护而停机。是否有使用不同镜子的不同公式?或者我可以向 Homebrew 软件添加不同的来源(如 bundler ?)? 谢谢你的帮助! 最佳答案 快速解决方法:
当我运行时: peardev install phpunit/PHPUnit 我得到以下信息: No releases available for package "pear.phpunit.de/P
服务器操作系统为Fedora 24. 64bit。 我想安装 Git 2.6.6。 所以下载源码并安装。 此服务器离线。所以我不使用“yum”。 ./configure --prefix=/usr/l
我正在尝试在我自己的服务器(操作系统:Linux Ubuntu Server 12.04)上安装 OpenEdX,但我遇到了同样的错误。谁能帮帮我? TASK: [ insights | insta
我是一名优秀的程序员,十分优秀!