Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/opencog/ocpkg
Installing, packaging, deploying and managing OpenCog
https://github.com/opencog/ocpkg
installer opencog packaging
Last synced: about 2 months ago
JSON representation
Installing, packaging, deploying and managing OpenCog
- Host: GitHub
- URL: https://github.com/opencog/ocpkg
- Owner: opencog
- Created: 2012-10-28T08:58:07.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2024-04-18T04:31:50.000Z (9 months ago)
- Last Synced: 2024-04-18T05:34:55.942Z (9 months ago)
- Topics: installer, opencog, packaging
- Language: Shell
- Homepage:
- Size: 662 KB
- Stars: 21
- Watchers: 25
- Forks: 46
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Collection of scripts
#### ocpkg
* This script installs an OpenCog development environment on a fresh
installation of Ubuntu >= 14.04 . It has options to selectively
download, build, test, install OpenCog projects.For a quick start using Ubuntu version >= 14.04, run
```
sudo curl -L http://raw.github.com/opencog/ocpkg/master/ocpkg -o /usr/local/bin/octool &&\
sudo chmod +x /usr/local/bin/octool &&\
octool
```For details, see the
[instructions on the OpenCog wiki](http://wiki.opencog.org/wikihome/index.php/Building_OpenCog#octool_for_ubuntu).#### octool-wip
Work-in-progress (abandoned).
The separate octool script is not yet ready. Use the above.#### ocbootstrap
(This hasn't been tested for a while)
A script to create an OpenCog build environment on ''any'' Linux system.#### ocfeedbot
An IRC bot of some sort, purpose not clear.Uses debootstrap. Requires ocpkg.
#### octool_rpi
For installing opencog on a Raspberry Pi Computer running Raspbian.
The readme [here](https://github.com/opencog/opencog_rpi/blob/master/README.md) will be helpful.May be out of date.
#### Example Usage
* To install all dependencies necessary to build OpenCog:
```
./octool -rdpcav -l default
# Optional: Add -s for installing dependencies for haskell binding.
# Optional: Add -n for installing dependencies and kernels for jupyter notebooks.
```* To install all dependencies necessary to build AtomSpace and AS-MOSES:
```
./octool -rdcv
```* To install all dependencies necessary to build Cogutil:
```
./octool -rdv
```