...
Table of contents
...
Table of Contents | ||||
---|---|---|---|---|
|
SDK開発環境を構築するための準備
ソフトウェアをダウンロードおよびインストールするための設定
各種ツール類を導入するために、Ubuntu のパッケージ管理システムである apt の設定を行います。
Proxy 経由でネットワーク接続されている場合、Proxy の設定を行います。(必要な環境のみ実施してください)
Preparation for establishing the SDK development environment
...
Settings for downloading and installing software
Set up a package management system ‘apt’ in Ubuntu in order to download and install software tools.
Adjust setting if network is connected to Internet via Proxy.(only in the necessary environment)
Edit /etc/apt/apt.conf を以下のように変更します。as follows
Acquire::http::proxy "http://my.http-proxy.co.jp:Port_Number";
Acquire::https::proxy "http://my.https-proxy.co.jp:Port_Number";
Info |
---|
# Modify http://my.http-proxy.co.jp:PortNumber と and http://my.https-proxy.co.jp:Port_N umber には環境に応じた設定をしてください。 |
...
jpd epending on your environment. |
Update apt package index.
Code Block |
---|
$ sudo apt-get update |
...