diff --git a/package.json b/package.json index 598ee346..d899c002 100644 --- a/package.json +++ b/package.json @@ -15,6 +15,7 @@ "@astrojs/partytown": "^2.1.4", "@astrojs/react": "^3.4.0", "@directus/sdk": "^19.0.1", + "@formkit/auto-animate": "^0.9.0", "@types/react": "^18.3.3", "@types/react-dom": "^18.3.0", "astro": "^4.9.3", diff --git a/public/static_assets/downloads/archive/7.0.0/banner-dark.png b/public/static_assets/downloads/archive/7.0.0/banner-dark.png new file mode 100644 index 00000000..d3ea0e00 Binary files /dev/null and b/public/static_assets/downloads/archive/7.0.0/banner-dark.png differ diff --git a/public/static_assets/downloads/archive/7.0.0/banner.png b/public/static_assets/downloads/archive/7.0.0/banner.png new file mode 100644 index 00000000..f171228d Binary files /dev/null and b/public/static_assets/downloads/archive/7.0.0/banner.png differ diff --git a/public/static_assets/downloads/archive/analytics/common.js b/public/static_assets/downloads/archive/analytics/common.js new file mode 100644 index 00000000..8a3ced85 --- /dev/null +++ b/public/static_assets/downloads/archive/analytics/common.js @@ -0,0 +1,43 @@ +const errorString = 'Undetermined'; +export const maybe = (x) => { + switch (x) { + case null: + case undefined: + case '': + return errorString; + default: + return x; + } +}; + +export const text = async (url) => fetch(url).then((res) => res.text()); + +export const getIPFromCloudFlare = async () => { + const data = await text('https://www.cloudflare.com/cdn-cgi/trace'); + let ipRegex = /ip=.+/; + let ip = data.match(ipRegex)[0].split('=')[1]; + return ip; +}; + +export const getIPFromAmazon = async () => { + const data = await text('https://checkip.amazonaws.com/'); + return data; +}; + +export const getIPFromIPify = async () => { + const data = await text('https://api.ipify.org/'); + return data; +}; + +export const getIPAddress = async () => { + for (const func of [getIPFromAmazon, getIPFromIPify, getIPFromCloudFlare]) { + try { + const response = await func(); + if (response) { + return response.trim(); + } + } catch (error) { + return errorString; + } + } +}; diff --git a/public/static_assets/downloads/archive/analytics/download-latest-banner.js b/public/static_assets/downloads/archive/analytics/download-latest-banner.js new file mode 100644 index 00000000..b4e63813 --- /dev/null +++ b/public/static_assets/downloads/archive/analytics/download-latest-banner.js @@ -0,0 +1,30 @@ +import { maybe, getIPAddress } from './common.js'; + +const eventName = 'download_latest_banner_click'; +const paramGetters = { + clicks: () => maybe(1), + value: () => maybe(1), + netlogo_version: () => { + return maybe(document.querySelector('meta[name="netlogo:version"]')?.getAttribute('content')); + }, + timestamp: () => maybe(new Date().toISOString()), + document_title: () => maybe(document.title), + document_referrer: () => maybe(document.referrer), + navigator_user_agent: () => maybe(navigator.userAgent), + navigator_platform: () => maybe(navigator.platform), + navigator_language: () => maybe(navigator.language), + navigator_cookies_enabled: () => maybe(navigator.cookieEnabled ? 'true' : 'false'), + ip: () => getIPAddress(), +}; + +window.onDownloadLatestBannerClick = function () { + const params = {}; + for (const [key, getter] of Object.entries(paramGetters)) { + params[key] = getter(); + } + if (typeof gtag === 'function') { + gtag('event', eventName, params); + } +}; + +document.querySelector('#download-latest-banner')?.addEventListener('click', window.onDownloadLatestBannerClick); diff --git a/public/static_assets/downloads/archive/analytics/download.js b/public/static_assets/downloads/archive/analytics/download.js new file mode 100644 index 00000000..f6f70d48 --- /dev/null +++ b/public/static_assets/downloads/archive/analytics/download.js @@ -0,0 +1,70 @@ +import { maybe, getIPAddress } from './common.js'; + +const formats = ['exe', 'msi', 'dmg', 'zip', 'tar.gz', 'tgz', 'jar']; +const formatsPattern = new RegExp(`\\.(${formats.join('|')})$`, 'i'); + +const eventName = 'download_netlogo'; +const paramGetters = { + href: (_, href) => href, + format: (_, href) => { + const match = href.match(formatsPattern); + return maybe(match ? match[1].toLowerCase() : null); + }, + version: () => { + return maybe(document.querySelector('meta[name="netlogo:version"]')?.getAttribute('content')); + }, + download_platform: (anchor) => { + let platform = anchor.getAttribute('data-platform'); + if (!platform) { + const row = anchor.closest('tr'); + if (row) { + const cells = row.querySelectorAll('td'); + for (const cell of cells) { + if (cell.querySelector('script') && !cell.querySelector('font')) { + continue; + } else if (cell.querySelector('font')) { + platform = maybe(cell.querySelector('font')?.textContent.trim().split('\n')[0]); + break; + } + const text = cell.textContent.trim(); + if (text) { + platform = text; + break; + } + } + } + } + return maybe(platform); + }, + timestamp: () => maybe(new Date().toISOString()), + document_title: () => maybe(document.title), + document_referrer: () => maybe(document.referrer), + navigator_user_agent: () => maybe(navigator.userAgent), + navigator_platform: () => maybe(navigator.platform), + navigator_language: () => maybe(navigator.language), + navigator_cookies_enabled: () => maybe(navigator.cookieEnabled ? 'true' : 'false'), + ip: () => getIPAddress(), +}; + +function handleDownloadLink(anchor, href) { + anchor.addEventListener('click', async function () { + const params = {}; + for (const [key, getter] of Object.entries(paramGetters)) { + params[key] = await getter(anchor, href); + } + if (typeof gtag === 'function') { + gtag('event', eventName, params); + } + }); +} + +document.addEventListener('DOMContentLoaded', function () { + const anchors = document.querySelectorAll('a'); + anchors.forEach((anchor) => { + const href = anchor.getAttribute('href'); + const isDownloadLink = href && formatsPattern.test(href); + if (isDownloadLink) { + handleDownloadLink(anchor, href); + } + }); +}); diff --git a/public/static_assets/downloads/archive/analytics/gtag.js b/public/static_assets/downloads/archive/analytics/gtag.js new file mode 100644 index 00000000..69fa8b88 --- /dev/null +++ b/public/static_assets/downloads/archive/analytics/gtag.js @@ -0,0 +1,6 @@ +window.dataLayer = window.dataLayer || []; +function gtag(...args) { + dataLayer.push(args); +} +gtag('js', new Date()); +gtag('config', 'G-5L2W88N305'); diff --git a/public/static_assets/downloads/archive/donate.png b/public/static_assets/downloads/archive/donate.png new file mode 100644 index 00000000..e211c49d Binary files /dev/null and b/public/static_assets/downloads/archive/donate.png differ diff --git a/public/static_assets/downloads/archive/os-aix.gif b/public/static_assets/downloads/archive/os-aix.gif new file mode 100644 index 00000000..f6186437 Binary files /dev/null and b/public/static_assets/downloads/archive/os-aix.gif differ diff --git a/public/static_assets/downloads/archive/os-hp.gif b/public/static_assets/downloads/archive/os-hp.gif new file mode 100644 index 00000000..55534108 Binary files /dev/null and b/public/static_assets/downloads/archive/os-hp.gif differ diff --git a/public/static_assets/downloads/archive/os-java.png b/public/static_assets/downloads/archive/os-java.png new file mode 100644 index 00000000..850c028b Binary files /dev/null and b/public/static_assets/downloads/archive/os-java.png differ diff --git a/public/static_assets/downloads/archive/os-mac-legacy.gif b/public/static_assets/downloads/archive/os-mac-legacy.gif new file mode 100644 index 00000000..edaacee5 Binary files /dev/null and b/public/static_assets/downloads/archive/os-mac-legacy.gif differ diff --git a/public/static_assets/downloads/archive/os-mac.gif b/public/static_assets/downloads/archive/os-mac.gif new file mode 100644 index 00000000..fd3693a7 Binary files /dev/null and b/public/static_assets/downloads/archive/os-mac.gif differ diff --git a/public/static_assets/downloads/archive/os-os2.gif b/public/static_assets/downloads/archive/os-os2.gif new file mode 100644 index 00000000..caa15338 Binary files /dev/null and b/public/static_assets/downloads/archive/os-os2.gif differ diff --git a/public/static_assets/downloads/archive/os-other.gif b/public/static_assets/downloads/archive/os-other.gif new file mode 100644 index 00000000..dc87ee2c Binary files /dev/null and b/public/static_assets/downloads/archive/os-other.gif differ diff --git a/public/static_assets/downloads/archive/os-solaris.gif b/public/static_assets/downloads/archive/os-solaris.gif new file mode 100644 index 00000000..b90bd774 Binary files /dev/null and b/public/static_assets/downloads/archive/os-solaris.gif differ diff --git a/public/static_assets/downloads/archive/os-unix.gif b/public/static_assets/downloads/archive/os-unix.gif new file mode 100644 index 00000000..9ed99e10 Binary files /dev/null and b/public/static_assets/downloads/archive/os-unix.gif differ diff --git a/public/static_assets/downloads/archive/os-win.gif b/public/static_assets/downloads/archive/os-win.gif new file mode 100644 index 00000000..79443d0d Binary files /dev/null and b/public/static_assets/downloads/archive/os-win.gif differ diff --git a/public/static_assets/downloads/archive/os-x.gif b/public/static_assets/downloads/archive/os-x.gif new file mode 100644 index 00000000..820c7d8d Binary files /dev/null and b/public/static_assets/downloads/archive/os-x.gif differ diff --git a/public/static_assets/downloads/archive/title-legacy.gif b/public/static_assets/downloads/archive/title-legacy.gif new file mode 100644 index 00000000..32c272d5 Binary files /dev/null and b/public/static_assets/downloads/archive/title-legacy.gif differ diff --git a/public/static_assets/downloads/archive/title.jpg b/public/static_assets/downloads/archive/title.jpg new file mode 100644 index 00000000..af862f02 Binary files /dev/null and b/public/static_assets/downloads/archive/title.jpg differ diff --git a/src/components/download/archive/archive-page.tsx b/src/components/download/archive/archive-page.tsx new file mode 100644 index 00000000..38e816a4 --- /dev/null +++ b/src/components/download/archive/archive-page.tsx @@ -0,0 +1,15 @@ +function ArchivePage({ title, children }: ArchivePageProps) { + return ( +
+

{title}

+ {children} +
+ ) +} + +interface ArchivePageProps { + title: string; + children?: React.ReactNode; +} + +export default ArchivePage; \ No newline at end of file diff --git a/src/components/download/archive/download-latest-banner.module.css b/src/components/download/archive/download-latest-banner.module.css new file mode 100644 index 00000000..fa8b38d6 --- /dev/null +++ b/src/components/download/archive/download-latest-banner.module.css @@ -0,0 +1,65 @@ +.banner { + display: flex; + align-items: center; + justify-content: space-around; + gap: 1rem; + + position: relative; + + padding: 1rem; + margin: 1rem auto 2.5rem auto; + + color: inherit; + background-color: #ffed29; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); + border-radius: 8px; + + text-decoration: none; + + height: auto; + max-width: min(90%, 600px); + + user-select: none; + transition: transform 0.2s; +} +.banner::before { + content: ''; + position: absolute; + top: 0; + left: 0; + width: 10px; + height: 100%; + background-color: #e11818; + border-top-left-radius: 8px; + border-bottom-left-radius: 8px; + transition: border-color 0.2s; +} +.banner:hover, +.banner:focus { + transform: translateY(-2px); + outline: none; +} +.logo { + height: 100%; + max-height: 70px; + max-width: 50%; +} +.decorate-as-link { + text-decoration: underline; + color: blue; +} +.text { + line-height: 1.5; +} + +@media (max-width: 600px) { + .banner { + flex-direction: column; + text-align: center; + gap: 0.5rem; + } + .logo { + max-width: 80%; + height: auto; + } +} diff --git a/src/components/download/archive/download-latest-banner.tsx b/src/components/download/archive/download-latest-banner.tsx new file mode 100644 index 00000000..b8936ddd --- /dev/null +++ b/src/components/download/archive/download-latest-banner.tsx @@ -0,0 +1,19 @@ +import styles from './download-latest-banner.module.css'; +import NetLogoOrgLogo from "../../../assets/NetLogoOrgLogo.svg"; + +export default function DownloadLatestBanner({ isLatest }: { isLatest: boolean }) { + if (isLatest) return null; + return ( + <> + + NetLogo Logo +

+ This is an older version of NetLogo +
+ Download the latest version here. +

+
+ + + ) +} \ No newline at end of file diff --git a/src/components/download/archive/hooks.tsx b/src/components/download/archive/hooks.tsx new file mode 100644 index 00000000..acfd1468 --- /dev/null +++ b/src/components/download/archive/hooks.tsx @@ -0,0 +1,38 @@ +import { useState } from 'react'; +import type { VersionEntryProps, VersionFlag } from './version-entry'; + +export function useVersionFilter( + versions: VersionEntryProps[], +) { + // flagsFilter contains flags to HIDE (not show) + const [flagsFilter, setFlagsFilter] = useState>(new Set(['BETA', "MILESTONE", "RC"])); + + const toggleFlagFilter = (flag: VersionFlag) => { + console.log('Toggling flag filter for:', flag); + setFlagsFilter((prev) => { + const newSet = new Set(prev); + if (newSet.has(flag)) { + newSet.delete(flag); + } else { + newSet.add(flag); + } + return newSet; + }); + }; + + const filteredVersions = versions.filter((version) => { + if (flagsFilter.size === 0) { + return true; + } + if (!version.flags || version.flags.length === 0) { + return true; + } + return !version.flags.some((flag) => flagsFilter.has(flag)); + }); + + return { + flagsFilter, + toggleFlagFilter, + filteredVersions, + }; +} \ No newline at end of file diff --git a/src/components/download/archive/version-entry.tsx b/src/components/download/archive/version-entry.tsx new file mode 100644 index 00000000..8b6b3298 --- /dev/null +++ b/src/components/download/archive/version-entry.tsx @@ -0,0 +1,89 @@ +// VersionEntry Component +interface VersionEntryProps { + // The version string, e.g., "6.2.0" + version: string; + // The release date string in a standard format, e.g., "2020-05-15" + releaseDate?: string; + // Optional URL to the version's download page + href?: string; + // Optional flags indicating special version types + flags?: VersionFlag[]; + // Optional short description (0-2 sentences) or list of key features + blurb?: string | string[]; +} + +const VersionEntry = ({ version, releaseDate, flags = [], href, blurb }: VersionEntryProps) => { + const formattedDate = releaseDate ? formatReleaseDate(releaseDate) : undefined; + + return ( + <> + NetLogo {version} + {formattedDate && ( + {formattedDate} + )} + {flags.length > 0 && ( + + {flags.map((flag) => ( + + ))} + + )} + + + ) +} + +// Blurb Component +const Blurb = ({ text }: { text: string | string[] | undefined }) => { + if (!text) return null; + + if (Array.isArray(text) && text.length > 0) { + return ( + + ); + } + + return

{text}

; +}; + +// VersionFlagBadge Subcomponent +type VersionFlag = 'BETA' | 'RC' | 'REVISION' | 'LATEST' | "MILESTONE" | "PREVIEW"; + +const versionFlagStyles: { [key in VersionFlag]: string } = { + BETA: "badge bg-warning text-dark me-1 ms-2", + RC: "badge bg-info me-1 ms-2", + REVISION: "badge bg-secondary me-1 ms-2", + LATEST: "badge bg-success me-1 ms-2", + MILESTONE: "badge bg-primary me-1 ms-2", + PREVIEW: "badge bg-dark me-1 ms-2", +}; + +const versionFlagTexts: { [key in VersionFlag]: string } = { + BETA: "Beta", + RC: "Release Candidate", + REVISION: "Revision", + LATEST: "Latest", + MILESTONE: "Milestone", + PREVIEW: "Preview", +}; + + +const VersionFlagBadge = ({ flag }: { flag: VersionFlag }) => { + let badgeText = versionFlagTexts[flag]; + let badgeClass = versionFlagStyles[flag]; + + return {badgeText}; +}; + +// Utilities +const formatReleaseDate = (dateString: string) => { + const options: Intl.DateTimeFormatOptions = { year: 'numeric', month: 'long' }; + return new Date(dateString).toLocaleDateString(undefined, options); +}; + +export type { VersionEntryProps, VersionFlag }; +export default VersionEntry; \ No newline at end of file diff --git a/src/components/download/archive/version-list.tsx b/src/components/download/archive/version-list.tsx new file mode 100644 index 00000000..542b05e3 --- /dev/null +++ b/src/components/download/archive/version-list.tsx @@ -0,0 +1,85 @@ +import VersionEntry, { type VersionEntryProps, type VersionFlag } from './version-entry'; +import { Timeline, TimelineItem } from '../../shared/timeline'; +import { useVersionFilter } from './hooks'; + +// VersionList Component +export interface VersionListProps { + versions: VersionEntryProps[]; + accentColor?: string; + lineColor?: string; +} + +const VersionList = ({ versions, accentColor, lineColor }: VersionListProps) => { + const { filteredVersions, toggleFlagFilter, flagsFilter } = useVersionFilter(versions); + + return ( + <> +
+ + + + +
+ + + {filteredVersions.map((versionInfo) => ( + + + + ))} + + + ); +}; + +// FilterCheckbox Subcomponent +interface FilterCheckboxProps { + flag: VersionFlag; + label: string; + isHidden: boolean; + onToggle: (flag: VersionFlag) => void; +} + +const FilterCheckbox = ({ flag, label, isHidden, onToggle }: FilterCheckboxProps) => { + const id = `${flag.toLowerCase()}-filter`; + + return ( +
+ onToggle(flag)} + /> + +
+ ); +}; + + +export default VersionList; \ No newline at end of file diff --git a/src/components/download/download-form.tsx b/src/components/download/download-form.tsx index 6d794b9f..783e1193 100644 --- a/src/components/download/download-form.tsx +++ b/src/components/download/download-form.tsx @@ -340,7 +340,7 @@ const DownloadForm = ({ versions, devOs }: DownloadFormProps) => {
- Version {formData.version} previous versions here + Version {formData.version} previous versions here
@@ -370,4 +370,3 @@ const DownloadForm = ({ versions, devOs }: DownloadFormProps) => { }; export { DownloadForm }; - diff --git a/src/components/download/download-section.tsx b/src/components/download/download-section.tsx index bd768919..9dd0691b 100644 --- a/src/components/download/download-section.tsx +++ b/src/components/download/download-section.tsx @@ -33,13 +33,13 @@ const DownloadSection = ({ downloadData, devOs }: DownloadSectionProps) => { />
-
+

{"Most computers can run NetLogo (see "} system requirements @@ -61,7 +61,7 @@ const DownloadSection = ({ downloadData, devOs }: DownloadSectionProps) => { {"Transition Guide"} diff --git a/src/components/shared/styles/timeline.css b/src/components/shared/styles/timeline.css new file mode 100644 index 00000000..d77c3529 --- /dev/null +++ b/src/components/shared/styles/timeline.css @@ -0,0 +1,76 @@ +/* Timeline component styles */ +ul.timeline { + list-style-type: none; + position: relative; + padding-left: 0; + margin: 0; + max-width: 1024px; +} + +ul.timeline:before { + content: ' '; + background: var(--timeline-line-color, #d4d9df); + display: inline-block; + position: absolute; + left: var(--timeline-line-left, 29px); + width: 2px; + height: 100%; + z-index: -1; +} + +ul.timeline > li { + margin: 20px 0; + padding-left: 40px; + position: relative; +} + +ul.timeline > li:before { + content: ' '; + background: white; + display: inline-block; + position: absolute; + border-radius: 50%; + border: var(--timeline-dot-border-width, 3px) solid var(--timeline-accent-color, #22c0e8); + left: var(--timeline-dot-left, 20px); + width: var(--timeline-dot-size, 20px); + height: var(--timeline-dot-size, 20px); + z-index: 400 !important; +} + +ul.timeline > li a { + font-weight: 600; + text-decoration: none; +} + +ul.timeline > li a:hover { + text-decoration: underline; +} + +ul.timeline > li .timeline-title { + font-weight: 600; +} + +ul.timeline > li .timeline-date { + float: right; + color: #666; + font-size: 0.9em; +} + +ul.timeline > li .timeline-description { + margin-top: 8px; + margin-bottom: 0; + color: #555; + line-height: 1.6; +} + +ul.timeline > li .timeline-blurb-list { + margin-top: 8px; + margin-bottom: 0; + padding-left: 20px; + color: #555; + line-height: 1.6; +} + +ul.timeline > li .timeline-blurb-list li { + margin-bottom: 4px; +} diff --git a/src/components/shared/timeline.tsx b/src/components/shared/timeline.tsx new file mode 100644 index 00000000..1594335b --- /dev/null +++ b/src/components/shared/timeline.tsx @@ -0,0 +1,75 @@ +import type { FC, ReactNode, CSSProperties } from 'react'; +import './styles/timeline.css'; +import { useAutoAnimate } from '@formkit/auto-animate/react' + +export interface TimelineItemData { + title: string; + date?: string; + description?: string; + href?: string; +} + +interface TimelineItemProps { + item?: TimelineItemData; + children?: ReactNode; +} + +export const TimelineItem: FC = ({ item, children }) => { + if (!item && !children) { + return null; + } + if (!item) return

  • {children}
  • ; + + return ( +
  • + <> + {item.href ? ( + + {item.title} + + ) : ( + {item.title} + )} + {item.date && ( + {item.date} + )} + {item.description && ( +

    {item.description}

    + )} + +
  • + ); +}; + +export interface TimelineProps { + accentColor?: string; + lineColor?: string; + dotSize?: number; + dotBorderWidth?: number; + children?: ReactNode; +} + +export const Timeline: FC = ({ + accentColor = '#22c0e8', + lineColor = '#d4d9df', + dotSize = 20, + dotBorderWidth = 3, + children, +}) => { + const [animationParent] = useAutoAnimate(); + + const timelineStyle = { + '--timeline-accent-color': accentColor, + '--timeline-line-color': lineColor, + '--timeline-dot-size': `${dotSize}px`, + '--timeline-dot-border-width': `${dotBorderWidth}px`, + '--timeline-line-left': `${(dotSize / 2) + 9}px`, + '--timeline-dot-left': `${(dotSize / 2)}px`, + } as CSSProperties; + + return ( +
      + {children} +
    + ); +}; diff --git a/src/pages/downloads/archive.astro b/src/pages/downloads/archive.astro new file mode 100644 index 00000000..b9851408 --- /dev/null +++ b/src/pages/downloads/archive.astro @@ -0,0 +1,30 @@ +--- +import Layout from '../../layouts/Layout.astro'; +import versions from './archive/_versions.json'; + +import VersionList from '../../components/download/archive/version-list'; +import ArchivePage from '../../components/download/archive/archive-page'; +import type { VersionEntryProps } from '../../components/download/archive/version-entry'; + +const title = 'NetLogo Download Archive'; +const description = 'Archive of previous NetLogo versions'; +--- + + + +

    + {description}. See release notes for details on version differences. + Click on any version to go to its download page. +
    + (Mac OS X users wanting to use NetLogo versions prior to 5.0.4, please read this) +

    + +
    +
    diff --git a/src/pages/downloads/archive/[version].astro b/src/pages/downloads/archive/[version].astro new file mode 100644 index 00000000..c9f94c94 --- /dev/null +++ b/src/pages/downloads/archive/[version].astro @@ -0,0 +1,34 @@ +--- +import versions from './_versions.json'; +import DownloadLatestBanner from '../../../components/download/archive/download-latest-banner'; + +const { version } = Astro.params; +const versionData = versions.find((v) => v.version === version); +const isLatest = versionData?.flags?.includes('LATEST') ?? false; + +export function getStaticPaths() { + return versions.map((versionData) => ({ + params: { version: versionData.href.split('/').filter(Boolean).pop() }, + })); +} + +const allHtmlFiles = await import.meta.glob('./html/*/index.html', { eager: true, as: 'raw' }); +const legacyHTML = allHtmlFiles[`./html/${version}/index.html`]; +--- + + + + + + + + + + + + + + + + + diff --git a/src/pages/downloads/archive/[version]/windows.astro b/src/pages/downloads/archive/[version]/windows.astro new file mode 100644 index 00000000..276b620d --- /dev/null +++ b/src/pages/downloads/archive/[version]/windows.astro @@ -0,0 +1,31 @@ +--- +const { version } = Astro.params; + +export async function getStaticPaths() { + const files = await import.meta.glob('../html/*/windows.html'); + const versions = Object.keys(files).map((filePath) => { + const parts = filePath.split('/'); + return parts[parts.length - 2]; // Get the version directory name + }); + return versions.map((version) => ({ + params: { version }, + })); +} + +const allHtmlFiles = await import.meta.glob('../html/*/windows.html', { eager: true, as: 'raw' }); +const legacyHTML = allHtmlFiles[`../html/${version}/windows.html`]; +--- + + + + + + + + + + + + + + diff --git a/src/pages/downloads/archive/_versions.json b/src/pages/downloads/archive/_versions.json new file mode 100644 index 00000000..e535779c --- /dev/null +++ b/src/pages/downloads/archive/_versions.json @@ -0,0 +1,584 @@ +[ + { + "version": "7.0.3-beta1", + "releaseDate": "November 2025", + "href": "/downloads/archive/7.0.3-beta1/", + "blurb": [], + "flags": [ + "BETA" + ] + }, + { + "version": "7.0.2", + "releaseDate": "October 2025", + "href": "/downloads/archive/7.0.2/", + "blurb": [], + "flags": [ + "LATEST" + ] + }, + { + "version": "7.0.1", + "releaseDate": "October 2025", + "href": "/downloads/archive/7.0.1/", + "blurb": [] + }, + { + "version": "7.0.0", + "releaseDate": "September 2025", + "href": "/downloads/archive/7.0.0/", + "blurb": [ + "New modernized GUI with light, dark, and classic modes", + "New .nlogox XML file format for better extensibility", + "Enhanced widget tools for easier model authoring", + "Improved customization with more preferences and settings" + ] + }, + { + "version": "7.0.0-beta2", + "releaseDate": "July 2025", + "href": "/downloads/archive/7.0.0-beta2/", + "flags": [ + "BETA" + ] + }, + { + "version": "7.0.0-beta1", + "releaseDate": "May 2025", + "href": "/downloads/archive/7.0.0-beta1/", + "flags": [ + "BETA" + ] + }, + { + "version": "6.4.0", + "releaseDate": "November 2023", + "href": "/downloads/archive/6.4.0/", + "blurb": "Major BehaviorSpace upgrade with sub-experiments, conditional measurements, and pause/resume capabilities." + }, + { + "version": "6.4.0-beta1", + "releaseDate": "October 2023", + "href": "/downloads/archive/6.4.0-beta1/", + "flags": [ + "BETA" + ] + }, + { + "version": "6.3.0", + "releaseDate": "September 2022", + "href": "/downloads/archive/6.3.0/", + "blurb": "Upgraded from Java 8 to Java 17 for improved performance and security." + }, + { + "version": "6.2.2", + "releaseDate": "December 2021", + "href": "/downloads/archive/6.2.2/" + }, + { + "version": "6.2.1", + "releaseDate": "October 2021", + "href": "/downloads/archive/6.2.1/" + }, + { + "version": "6.2.0", + "releaseDate": "December 2020", + "href": "/downloads/archive/6.2.0/", + "blurb": [ + "Pop-out code tab for side-by-side view", + "Time extension now bundled", + "View2.5D extension significantly upgraded" + ] + }, + { + "version": "6.1.1", + "releaseDate": "September 2019", + "href": "/downloads/archive/6.1.1/" + }, + { + "version": "6.1.0", + "releaseDate": "May 2019", + "href": "/downloads/archive/6.1.0/", + "blurb": [ + "Extension Manager for easy installation and updates", + "Python extension now bundled", + "Variadic ifelse and ifelse-value primitives" + ] + }, + { + "version": "6.0.4", + "releaseDate": "June 2018", + "href": "/downloads/archive/6.0.4/" + }, + { + "version": "6.0.3", + "releaseDate": "March 2018", + "href": "/downloads/archive/6.0.3/" + }, + { + "version": "6.0.2", + "releaseDate": "August 2017", + "href": "/downloads/archive/6.0.2/" + }, + { + "version": "6.0.2-RC1", + "releaseDate": "March 2017", + "href": "/downloads/archive/6.0.2-RC1/", + "flags": [ + "RC" + ] + }, + { + "version": "6.0.1", + "releaseDate": "March 2017", + "href": "/downloads/archive/6.0.1/" + }, + { + "version": "6.0.1-M1", + "href": "/downloads/archive/6.0.1-M1/", + "flags": [ + "MILESTONE" + ] + }, + { + "version": "6.0.1-RC1", + "releaseDate": "March 2017", + "href": "/downloads/archive/6.0.1-RC1/", + "flags": [ + "RC" + ] + }, + { + "version": "6.0", + "releaseDate": "December 2016", + "href": "/downloads/archive/6.0.0/", + "blurb": [ + "Anonymous procedures replace tasks", + "LevelSpace extension for multi-level modeling", + "Code autocompletion and folding", + "Enhanced link reporters" + ] + }, + { + "version": "6.0-BETA2", + "href": "/downloads/archive/6.0-BETA2/", + "releaseDate": "November 2016", + "flags": [ + "BETA" + ] + }, + { + "version": "6.0-BETA1", + "href": "/downloads/archive/6.0-BETA1/", + "releaseDate": "October 2016", + "flags": [ + "BETA" + ] + }, + { + "version": "6.0beta", + "href": "/downloads/archive/6.0beta/", + "releaseDate": "May 2016", + "flags": [ + "BETA" + ] + }, + { + "version": "6.0-M9", + "href": "/downloads/archive/6.0-M9/", + "releaseDate": "July 2016", + "flags": [ + "MILESTONE" + ] + }, + { + "version": "6.0-M8", + "href": "/downloads/archive/6.0-M8/", + "releaseDate": "June 2016", + "flags": [ + "MILESTONE" + ] + }, + { + "version": "6.0-M7", + "href": "/downloads/archive/6.0-M7/", + "releaseDate": "May 2016", + "flags": [ + "MILESTONE" + ] + }, + { + "version": "6.0-M6", + "href": "/downloads/archive/6.0-M6/", + "releaseDate": "May 2016", + "flags": [ + "MILESTONE" + ] + }, + { + "version": "6.0-M5", + "href": "/downloads/archive/6.0-M5/", + "releaseDate": "April 2016", + "flags": [ + "MILESTONE" + ] + }, + { + "version": "6.0-M4", + "href": "/downloads/archive/6.0-M4/", + "releaseDate": "April 2016", + "flags": [ + "MILESTONE" + ] + }, + { + "version": "6.0-M3", + "href": "/downloads/archive/6.0-M3/", + "releaseDate": "March 2016", + "flags": [ + "MILESTONE" + ] + }, + { + "version": "6.0-M2", + "href": "/downloads/archive/6.0-M2/", + "releaseDate": "March 2016", + "flags": [ + "MILESTONE" + ] + }, + { + "version": "6.0-M1", + "href": "/downloads/archive/6.0-M1/", + "releaseDate": "December 2015", + "flags": [ + "MILESTONE" + ] + }, + { + "version": "6.0-CONSTRUCTIONISM-2016-PREVIEW", + "href": "/downloads/archive/6.0-CONSTRUCTIONISM-2016-PREVIEW/", + "releaseDate": "December 2015", + "flags": [ + "PREVIEW" + ] + }, + { + "version": "5.3.1", + "href": "/downloads/archive/5.3.1/", + "releaseDate": "February 2016" + }, + { + "version": "5.3.1-RC3", + "href": "/downloads/archive/5.3.1-RC3/", + "releaseDate": "February 2016", + "flags": [ + "RC" + ] + }, + { + "version": "5.3.1-RC2", + "href": "/downloads/archive/5.3.1-RC2/", + "releaseDate": "February 2016", + "flags": [ + "RC" + ] + }, + { + "version": "5.3.1-RC1", + "href": "/downloads/archive/5.3.1-RC1/", + "releaseDate": "January 2016", + "flags": [ + "RC" + ] + }, + { + "version": "5.3", + "releaseDate": "December 2015", + "href": "/downloads/archive/5.3.0/", + "blurb": "Mathematica Link included and tested with Mathematica 10." + }, + { + "version": "5.3-RC1", + "href": "/downloads/archive/5.3-RC1/", + "releaseDate": "December 2015", + "flags": [ + "RC" + ] + }, + { + "version": "5.2.1", + "releaseDate": "October 2015", + "href": "/downloads/archive/5.2.1/" + }, + { + "version": "5.2", + "releaseDate": "April 2015", + "href": "/downloads/archive/5.2.0/", + "blurb": [ + "CSV and Palette extensions included", + "Network extension with support for many file types", + "HSB color primitives updated" + ] + }, + { + "version": "5.2.0-RC5", + "href": "/downloads/archive/5.2.0-RC5/", + "flags": [ + "RC" + ] + }, + { + "version": "5.2.0-RC4", + "href": "/downloads/archive/5.2.0-RC4/", + "flags": [ + "RC" + ] + }, + { + "version": "5.2-RC3", + "href": "/downloads/archive/5.2-RC3/", + "flags": [ + "RC" + ] + }, + { + "version": "5.2-RC2", + "href": "/downloads/archive/5.2-RC2/", + "flags": [ + "RC" + ] + }, + { + "version": "5.1.0", + "releaseDate": "July 2014", + "href": "/downloads/archive/5.1.0/", + "blurb": "New network extension bundled with NetLogo." + }, + { + "version": "5.1.0-M2", + "href": "/downloads/archive/5.1.0-M2/", + "flags": [ + "MILESTONE" + ] + }, + { + "version": "5.1.0-M1", + "href": "/downloads/archive/5.1.0-M1/", + "flags": [ + "MILESTONE" + ] + }, + { + "version": "5.0.5", + "releaseDate": "December 2013", + "href": "/downloads/archive/5.0.5/" + }, + { + "version": "5.0.4", + "releaseDate": "March 2013", + "href": "/downloads/archive/5.0.4/" + }, + { + "version": "5.0.3", + "releaseDate": "October 2012", + "href": "/downloads/archive/5.0.3/" + }, + { + "version": "5.0.2", + "releaseDate": "July 2012", + "href": "/downloads/archive/5.0.2/" + }, + { + "version": "5.0.1", + "releaseDate": "April 2012", + "href": "/downloads/archive/5.0.1/" + }, + { + "version": "5.0", + "releaseDate": "February 2012", + "href": "/downloads/archive/5.0.0/", + "blurb": [ + "Open source with GPL license", + "Tasks for first-class functions and closures", + "Rich formatting in Info tabs using Markdown", + "GUI localized in Spanish, Russian, and Chinese" + ] + }, + { + "version": "4.1.3", + "releaseDate": "April 2011", + "href": "/downloads/archive/4.1.3/" + }, + { + "version": "4.1.2", + "releaseDate": "December 2010", + "href": "/downloads/archive/4.1.2/" + }, + { + "version": "4.1.1", + "releaseDate": "August 2010", + "href": "/downloads/archive/4.1.1/" + }, + { + "version": "4.1", + "releaseDate": "December 2009", + "href": "/downloads/archive/4.1.0/", + "blurb": [ + "Parallel BehaviorSpace", + "Controlling API for embedding NetLogo", + "Automatic code indenter" + ] + }, + { + "version": "4.0.5", + "releaseDate": "December 2009", + "href": "/downloads/archive/4.0.5/" + }, + { + "version": "4.0.4", + "releaseDate": "November 2008", + "href": "/downloads/archive/4.0.4/" + }, + { + "version": "4.0.3", + "releaseDate": "August 2008", + "href": "/downloads/archive/4.0.3/" + }, + { + "version": "4.0.2", + "releaseDate": "December 2007", + "href": "/downloads/archive/4.0.2/" + }, + { + "version": "4.0.1", + "releaseDate": "October 2007", + "href": "/downloads/archive/4.0.1/" + }, + { + "version": "4.0", + "releaseDate": "September 2007", + "href": "/downloads/archive/4.0.0/", + "blurb": [ + "Link agents introduced", + "Tick counter and view update modes", + "Models run faster with JVM byte code compilation" + ] + }, + { + "version": "3.1.5", + "releaseDate": "December 2007", + "href": "/downloads/archive/3.1.5/" + }, + { + "version": "3.1.4", + "releaseDate": "February 2007", + "href": "/downloads/archive/3.1.4/" + }, + { + "version": "3.1.3", + "releaseDate": "September 2006", + "href": "/downloads/archive/3.1.3/" + }, + { + "version": "3.1.2", + "releaseDate": "August 2006", + "href": "/downloads/archive/3.1.2/" + }, + { + "version": "3.1.1", + "releaseDate": "June 2006", + "href": "/downloads/archive/3.1.1/" + }, + { + "version": "3.1", + "releaseDate": "April 2006", + "href": "/downloads/archive/3.1.0/", + "blurb": "Topologies with optional wrapping at world edges." + }, + { + "version": "3.0.2", + "releaseDate": "November 2005", + "href": "/downloads/archive/3.0.2/" + }, + { + "version": "3.0.1", + "releaseDate": "November 2005", + "href": "/downloads/archive/3.0.1/" + }, + { + "version": "3.0", + "releaseDate": "September 2005", + "href": "/downloads/archive/3.0.0/", + "blurb": [ + "3D view for 2D models", + "System Dynamics Modeler", + "Drawing layer and GoGo extension" + ] + }, + { + "version": "2.1", + "releaseDate": "December 2004", + "href": "/downloads/archive/2.1.0/", + "blurb": "Action keys to trigger buttons by keypresses and QuickTime movie export." + }, + { + "version": "2.0.2", + "releaseDate": "August 2004", + "href": "/downloads/archive/2.0.2/" + }, + { + "version": "2.0.1", + "releaseDate": "May 2004", + "href": "/downloads/archive/2.0.1/" + }, + { + "version": "2.0", + "releaseDate": "December 2003", + "href": "/downloads/archive/2.0.2/", + "blurb": "Fast, flicker-free, non-grid-based graphics system." + }, + { + "version": "1.3.1", + "releaseDate": "September 2003", + "href": "/downloads/archive/1.3.1/" + }, + { + "version": "1.3", + "releaseDate": "June 2003", + "href": "/downloads/archive/1.3/" + }, + { + "version": "1.2.1", + "releaseDate": "May 2003", + "href": "/downloads/archive/1.2.1/" + }, + { + "version": "1.2", + "href": "/downloads/archive/1.2/" + }, + { + "version": "1.1 Revision F", + "releaseDate": "November 2002", + "flags": [ + "REVISION" + ], + "href": "/downloads/archive/1.1f/" + }, + { + "version": "1.1", + "href": "/downloads/archive/1.1/" + }, + { + "version": "1.0 Revision D", + "releaseDate": "April 2002", + "flags": [ + "REVISION" + ], + "href": "/downloads/archive/1.0d/" + }, + { + "version": "1.0", + "href": "/downloads/archive/1.0/" + } +] \ No newline at end of file diff --git a/src/pages/downloads/archive/html/1.0/index.html b/src/pages/downloads/archive/html/1.0/index.html new file mode 100644 index 00000000..3d78f742 --- /dev/null +++ b/src/pages/downloads/archive/html/1.0/index.html @@ -0,0 +1,1307 @@ + + + +NetLogo 1.0 Downloads + + + + + + + + + +

    NetLogo banner +

    + +

    NetLogo 1.0 Downloads

    + +

    + + + +

    Windows notes: +

      +
    • NetLogo runs fastest with the IBM 1.1 VM. Therefore we strongly +recommend the "Includes Java VM" option. (Questions? See below.) +
    • If you are running anti-virus software there may be a long pause +(as much as two minutes) near the end of the download process. +
    + +

    Mac notes: +

      +
    • Once it is installed, NetLogo will run on either Mac OS 8/9 or Mac +OS X (under Classic). Here, choose the download for OS you are +running at the moment. +
    + +
    + +


    + +
    + + + + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Platform +
    + + includes Java VM
    (recommended) +
    +
    +
    + + without Java VM +
    +
    +
    + Instructions
    +
    +
    + +
    +
    +
    + + + Windows + +
    +
    + +
    + + Download + (14.5M) +
    + +
    + +
    + + Download + (9.1M) +
    + +
    +
    + View
    +
    +
    + +
    +
    +
    + + + Mac OS + +
    +
    + +
    + + Download + (13.5M) +
    + +
    + +
    + Download + (9.2M) +
    + +
    +
    + View
    +
    +
    + +
    +
    +
    + + + Mac OS X + +
    +
    + + +
    + Download + (8.8M) +
    + +
    +
    + View
    +
    +
    + +
    +
    +
    + + + Linux + +
    +
    + +
    + Download + (41.7M) +
    + +
    + +
    + Download + (9.3M) +
    + +
    +
    + View
    +
    +
    + +
    +
    +
    + + + AIX + +
    +
    + + + +
    + Download + (9.3M) +
    + +
    +
    + View
    +
    +
    + +
    +
    +
    + + + Solaris + +
    +
    + + + +
    + Download + (9.3M) +
    + +
    +
    + View
    +
    +
    + +
    +
    +
    + + + HP-UX + +
    +
    + + + +
    + Download + (9.3M) +
    + +
    +
    + View
    +
    +
    + +
    +
    +
    + + + Unix + +
    +
    + + +
    + Download + (9.3M) +
    + +
    +
    + View
    +
    +
    + +
    +
    + +
    + + + Other Java-enabled Platforms + +
    +
    + + +
    + Download + (8.1M) +
    + +
    +
    + View
    +
    + +

    + + + +

    +


    + +
    +

    Windows Instructions:
    + +

      +

      Instructions +

        +
      • After downloading, double-click NetLogo1.0Installer.exe +
      +


      + Notes
      +

        +
      • We strongly recommend the "includes Java VM" download option. +
      • Choosing this download option installs IBM's 1.1.8 VM for NetLogo's private use only. Other programs on your system are not affected. +
      • NetLogo runs much faster on this VM than any other VM. +
      • Even if you have downloaded NetLogo before, you should still choose "Includes Java VM". The bundled VM is not shared between different versions of NetLogo. +
      • You should only choose the "without Java VM" download if either: +
          + +
        • You have already, separately and independently from any NetLogo + download, installed the IBM 1.1 VM on your system yourself. + +
        • You are certain you wish to try using a VM other than our + recommended VM. + +
        + + +
      +


      + (Go To Top)
      +

    +
    + + + + +
    +

    +


    + +
    +
    +

    Mac OS Classic (8.1 or greater) Instructions:
    + +

      +

      Instructions +

        +
      • After downloading, double-click NetLogo1.0Installer +
      +


      + Notes
      +

        +
      • Requires PowerPC and Mac OS 8.1 or later + + +
      • If you do not already have Macintosh Runtime for Java version 2.2.5 on your system, or if you are not sure, be sure to download the package above which includes it. +
      • The installer is MacBinary encoded and will be automatically decoded after downloading.
        + If it does not, you can decode it using StuffIt Expander 4.5 or later +
      +


      + (Go To Top)
      +

    +
    + + + + +
    +

    +


    + +
    +
    +

    Mac OS X Instructions:
    + +

      +

      Instructions +

        +
      • After downloading, double-click NetLogo1.0Installer +
      +


      + Notes
      +

        +
      • NetLogo will run as a Classic application under the Classic environment. (We plan to support OS X natively in a future version.) +
      • Requires PowerPC and Mac OS X 10.0 or later +
      • The installer will be recognized by Stuffit Expander and will be automatically decoded after downloading.
        + If it does not, you can decode it using StuffIt Expander 6.0 or later +
      +


      + (Go To Top)
      +

    +
    + + + + +
    +

    +


    + +
    +
    +

    Linux Instructions:
    + +

      +

      Instructions +

        +
      • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
      • At the prompt type:  sh ./NetLogo1_0Installer.bin +
      +


      + Notes
      +

        + + + +
      • If you do not have a Java virtual machine installed, be sure to download the package above which includes one. Otherwise you may need to download one from Sun's Java web site or contact your OS manufacturer. +
      +


      + (Go To Top)
      +

    +
    + + + + + + + +
    +

    +


    + +
    +
    +

    AIX Instructions:
    + +

      +

      Instructions +

        +
      • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
      • At the prompt type:  sh ./NetLogo1_0Installer.bin +
      +


      + Notes
      +

        + +
      • You need to install a Java 1.1.4 (or later) virtual machine. You can download one from Sun's Java web site. + + +
      +


      + (Go To Top)
      +

    +
    + + + + + + + +
    +

    +


    + +
    +
    +

    Solaris Instructions:
    + +

      +

      Instructions +

        +
      • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
      • At the prompt type:  sh ./NetLogo1_0Installer.bin +
      +


      + Notes
      +

        + +
      • You need to install a Java 1.1.4 (or later) virtual machine. You can download one from Sun's Java web site. + + +
      +


      + (Go To Top)
      +

    +
    + + + + + + + +
    +

    +


    + +
    +
    +

    HP-UX Instructions:
    + +

      +

      Instructions +

        +
      • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
      • At the prompt type:  sh ./NetLogo1_0Installer.bin +
      +


      + Notes
      +

        + +
      • You need to install a Java 1.1.4 (or later) virtual machine. You can download one from Sun's Java web site or contact your OS manufacturer. + + +
      +


      + (Go To Top)
      +

    +
    + + + + + + + +
    +

    +


    + +
    +
    +

    Unix Instructions:
    + +

      +

      Instructions +

        +
      • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
      • At the prompt type:  sh ./NetLogo1_0Installer.bin +
      +


      + Notes
      +

        + +
      • You need to install a Java 1.1.4 (or later) virtual machine. You can download one from Sun's Java web site or contact your OS manufacturer. +
      • If you do not have a Java virtual machine installed, be sure to download the package above which includes one. Otherwise you may need to download one from Sun's Java web site or contact your OS manufacturer. +
      +


      + (Go To Top)
      +

    +
    + + + + + + + + +
    +

    +


    + +
    +
    +

    All Other Platforms Instructions:
    + +

    +
    +
      +

      Instructions (Unix or Unix-like operating systems) +

        +
      • For Java 2, after downloading, type
        +   java -jar NetLogo1_0Installer.jar +
      • For Java 1.1, after downloading, type
        +   jre -cp NetLogo1_0Installer.jar install +
      • If that does not work, try
        +   java -classpath [path to]classes.zip:NetLogo1_0Installer.jar install +
      • If that does not work either, on sh-like shells, try
        +   cd [to directory where NetLogo1_0Installer.jar is located]
        +   CLASSPATH=NetLogo1_0Installer.jar
        +   export CLASSPATH
        +   java install +
      • Or for csh-like shells, try
        +   cd [to directory where NetLogo1_0Installer.jar is located]
        +   setenv CLASSPATH NetLogo1_0Installer.jar
        +   java install +
      +


      + Instructions (for other platforms)
      +

        +
      • Be sure you have Java 1.1.6 or later installed. You can download Java from Sun's site +
      • In a console window, change to the directory where you downloaded NetLogo1_0Installer.jar to before running the installer +
      • Your operating system may invoke Java in a different way. To start the installer, add NetLogo1_0Installer.jar to your CLASSPATH, then start the main class of the installer named install +
      +


      + (Go To Top)
      +

    +
    + + + +
    + +Installers created with InstallAnywhere.
    +InstallAnywhere is a registered trademark of Zero G Software, Inc.
    +Mac OS is a registered trademark of Apple Computer, Inc.
    +Solaris and Java are trademarks of Sun Microsystems, Inc.
    +Windows is a registered trademark of Microsoft Corporation.
    +All other marks are properties of their respective owners.
    +
    + +
    + + + + diff --git a/src/pages/downloads/archive/html/1.0d/index.html b/src/pages/downloads/archive/html/1.0d/index.html new file mode 100644 index 00000000..48cd9528 --- /dev/null +++ b/src/pages/downloads/archive/html/1.0d/index.html @@ -0,0 +1,1307 @@ + + + +NetLogo 1.0 Revision D Downloads + + + + + + + + + +

    NetLogo banner +

    + +

    NetLogo 1.0 Revision D Downloads

    + +

    + + + +

    Windows notes: +

      +
    • NetLogo runs fastest with the IBM 1.1 VM. Therefore we strongly +recommend the "Includes Java VM" option. (Questions? See below.) +
    • If you are running anti-virus software there may be a long pause +(as much as two minutes) near the end of the download process. +
    + +

    Mac notes: +

      +
    • Once it is installed, NetLogo will run on either Mac OS 8/9 or Mac +OS X (under Classic). Here, choose the download for OS you are +running at the moment. +
    + +
    + +


    + +
    + + + + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Platform +
    + + includes Java VM
    (recommended) +
    +
    +
    + + without Java VM +
    +
    +
    + Instructions
    +
    +
    + +
    +
    +
    + + + Windows + +
    +
    + +
    + + Download + (14.5M) +
    + +
    + +
    + + Download + (9.1M) +
    + +
    +
    + View
    +
    +
    + +
    +
    +
    + + + Mac OS + +
    +
    + +
    + + Download + (13.5M) +
    + +
    + +
    + Download + (9.2M) +
    + +
    +
    + View
    +
    +
    + +
    +
    +
    + + + Mac OS X + +
    +
    + + +
    + Download + (8.8M) +
    + +
    +
    + View
    +
    +
    + +
    +
    +
    + + + Linux + +
    +
    + +
    + Download + (41.7M) +
    + +
    + +
    + Download + (9.3M) +
    + +
    +
    + View
    +
    +
    + +
    +
    +
    + + + AIX + +
    +
    + + + +
    + Download + (9.3M) +
    + +
    +
    + View
    +
    +
    + +
    +
    +
    + + + Solaris + +
    +
    + + + +
    + Download + (9.3M) +
    + +
    +
    + View
    +
    +
    + +
    +
    +
    + + + HP-UX + +
    +
    + + + +
    + Download + (9.3M) +
    + +
    +
    + View
    +
    +
    + +
    +
    +
    + + + Unix + +
    +
    + + +
    + Download + (9.3M) +
    + +
    +
    + View
    +
    +
    + +
    +
    + +
    + + + Other Java-enabled Platforms + +
    +
    + + +
    + Download + (8.1M) +
    + +
    +
    + View
    +
    + +

    + + + +

    +


    + +
    +

    Windows Instructions:
    + +

      +

      Instructions +

        +
      • After downloading, double-click NetLogo1.0Installer.exe +
      +


      + Notes
      +

        +
      • We strongly recommend the "includes Java VM" download option. +
      • Choosing this download option installs IBM's 1.1.8 VM for NetLogo's private use only. Other programs on your system are not affected. +
      • NetLogo runs much faster on this VM than any other VM. +
      • Even if you have downloaded NetLogo before, you should still choose "Includes Java VM". The bundled VM is not shared between different versions of NetLogo. +
      • You should only choose the "without Java VM" download if either: +
          + +
        • You have already, separately and independently from any NetLogo + download, installed the IBM 1.1 VM on your system yourself. + +
        • You are certain you wish to try using a VM other than our + recommended VM. + +
        + + +
      +


      + (Go To Top)
      +

    +
    + + + + +
    +

    +


    + +
    +
    +

    Mac OS Classic (8.1 or greater) Instructions:
    + +

      +

      Instructions +

        +
      • After downloading, double-click NetLogo1.0Installer +
      +


      + Notes
      +

        +
      • Requires PowerPC and Mac OS 8.1 or later + + +
      • If you do not already have Macintosh Runtime for Java version 2.2.5 on your system, or if you are not sure, be sure to download the package above which includes it. +
      • The installer is MacBinary encoded and will be automatically decoded after downloading.
        + If it does not, you can decode it using StuffIt Expander 4.5 or later +
      +


      + (Go To Top)
      +

    +
    + + + + +
    +

    +


    + +
    +
    +

    Mac OS X Instructions:
    + +

      +

      Instructions +

        +
      • After downloading, double-click NetLogo1.0Installer +
      +


      + Notes
      +

        +
      • NetLogo will run as a Classic application under the Classic environment. (We plan to support OS X natively in a future version.) +
      • Requires PowerPC and Mac OS X 10.0 or later +
      • The installer will be recognized by Stuffit Expander and will be automatically decoded after downloading.
        + If it does not, you can decode it using StuffIt Expander 6.0 or later +
      +


      + (Go To Top)
      +

    +
    + + + + +
    +

    +


    + +
    +
    +

    Linux Instructions:
    + +

      +

      Instructions +

        +
      • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
      • At the prompt type:  sh ./NetLogo1_0Installer.bin +
      +


      + Notes
      +

        + + + +
      • If you do not have a Java virtual machine installed, be sure to download the package above which includes one. Otherwise you may need to download one from Sun's Java web site or contact your OS manufacturer. +
      +


      + (Go To Top)
      +

    +
    + + + + + + + +
    +

    +


    + +
    +
    +

    AIX Instructions:
    + +

      +

      Instructions +

        +
      • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
      • At the prompt type:  sh ./NetLogo1_0Installer.bin +
      +


      + Notes
      +

        + +
      • You need to install a Java 1.1.4 (or later) virtual machine. You can download one from Sun's Java web site. + + +
      +


      + (Go To Top)
      +

    +
    + + + + + + + +
    +

    +


    + +
    +
    +

    Solaris Instructions:
    + +

      +

      Instructions +

        +
      • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
      • At the prompt type:  sh ./NetLogo1_0Installer.bin +
      +


      + Notes
      +

        + +
      • You need to install a Java 1.1.4 (or later) virtual machine. You can download one from Sun's Java web site. + + +
      +


      + (Go To Top)
      +

    +
    + + + + + + + +
    +

    +


    + +
    +
    +

    HP-UX Instructions:
    + +

      +

      Instructions +

        +
      • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
      • At the prompt type:  sh ./NetLogo1_0Installer.bin +
      +


      + Notes
      +

        + +
      • You need to install a Java 1.1.4 (or later) virtual machine. You can download one from Sun's Java web site or contact your OS manufacturer. + + +
      +


      + (Go To Top)
      +

    +
    + + + + + + + +
    +

    +


    + +
    +
    +

    Unix Instructions:
    + +

      +

      Instructions +

        +
      • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
      • At the prompt type:  sh ./NetLogo1_0Installer.bin +
      +


      + Notes
      +

        + +
      • You need to install a Java 1.1.4 (or later) virtual machine. You can download one from Sun's Java web site or contact your OS manufacturer. +
      • If you do not have a Java virtual machine installed, be sure to download the package above which includes one. Otherwise you may need to download one from Sun's Java web site or contact your OS manufacturer. +
      +


      + (Go To Top)
      +

    +
    + + + + + + + + +
    +

    +


    + +
    +
    +

    All Other Platforms Instructions:
    + +

    +
    +
      +

      Instructions (Unix or Unix-like operating systems) +

        +
      • For Java 2, after downloading, type
        +   java -jar NetLogo1_0Installer.jar +
      • For Java 1.1, after downloading, type
        +   jre -cp NetLogo1_0Installer.jar install +
      • If that does not work, try
        +   java -classpath [path to]classes.zip:NetLogo1_0Installer.jar install +
      • If that does not work either, on sh-like shells, try
        +   cd [to directory where NetLogo1_0Installer.jar is located]
        +   CLASSPATH=NetLogo1_0Installer.jar
        +   export CLASSPATH
        +   java install +
      • Or for csh-like shells, try
        +   cd [to directory where NetLogo1_0Installer.jar is located]
        +   setenv CLASSPATH NetLogo1_0Installer.jar
        +   java install +
      +


      + Instructions (for other platforms)
      +

        +
      • Be sure you have Java 1.1.6 or later installed. You can download Java from Sun's site +
      • In a console window, change to the directory where you downloaded NetLogo1_0Installer.jar to before running the installer +
      • Your operating system may invoke Java in a different way. To start the installer, add NetLogo1_0Installer.jar to your CLASSPATH, then start the main class of the installer named install +
      +


      + (Go To Top)
      +

    +
    + + + +
    + +Installers created with InstallAnywhere.
    +InstallAnywhere is a registered trademark of Zero G Software, Inc.
    +Mac OS is a registered trademark of Apple Computer, Inc.
    +Solaris and Java are trademarks of Sun Microsystems, Inc.
    +Windows is a registered trademark of Microsoft Corporation.
    +All other marks are properties of their respective owners.
    +
    + +
    + + + + diff --git a/src/pages/downloads/archive/html/1.1/index.html b/src/pages/downloads/archive/html/1.1/index.html new file mode 100644 index 00000000..60474f4d --- /dev/null +++ b/src/pages/downloads/archive/html/1.1/index.html @@ -0,0 +1,1300 @@ + + + +NetLogo 1.1 Rev F Downloads + + + + + + + + + +

    NetLogo banner +

    + +

    NetLogo 1.1 Rev F Downloads

    + +

    + + + +

    Attention Windows users: +

      +
    • NetLogo runs fastest with the IBM 1.1 VM. Therefore we strongly +recommend the "Includes Java VM" option. (Questions? See below.) +
    • If you are running anti-virus software there may be a long pause +(as much as two minutes) near the end of the download process. +
    + + + +


    + +
    + + + + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Platform +
    + + includes Java VM
    (recommended) +
    +
    +
    + + without Java VM +
    +
    +
    + Instructions
    +
    +
    + +
    +
    +
    + + + Windows + +
    +
    + +
    + + Download + (13.2M) +
    + +
    + +
    + + Download + (8.4M) +
    + +
    +
    + View
    +
    +
    + +
    +
    +
    + + + Mac OS 8 or 9 + +
    +
    + +
    + + Download + (12.2M) +
    + +
    + +
    + Download + (8.4M) +
    + +
    +
    + View
    +
    +
    + +
    +
    +
    + + + Mac OS X + +
    +
    + + +
    + Download + (8.3M) +
    + +
    +
    + View
    +
    +
    + +
    +
    +
    + + + Linux + +
    +
    + +
    + Download + (40.9M) +
    + +
    + +
    + Download + (8.2M) +
    + +
    +
    + View
    +
    +
    + +
    +
    +
    + + + AIX + +
    +
    + + + +
    + Download + (8.2M) +
    + +
    +
    + View
    +
    +
    + +
    +
    +
    + + + Solaris + +
    +
    + + + +
    + Download + (8.2M) +
    + +
    +
    + View
    +
    +
    + +
    +
    +
    + + + HP-UX + +
    +
    + + + +
    + Download + (8.2M) +
    + +
    +
    + View
    +
    +
    + +
    +
    +
    + + + Unix + +
    +
    + + +
    + Download + (8.2M) +
    + +
    +
    + View
    +
    +
    + +
    +
    + +
    + + + Other Java-enabled Platforms + +
    +
    + + +
    + Download + (8.1M) +
    + +
    +
    + View
    +
    + +

    + + + +

    +


    + +
    +

    Windows Instructions:
    + +

      +

      Instructions +

        +
      • After downloading, double-click NetLogo1.1Installer.exe +
      +


      + Notes
      +

        +
      • We strongly recommend the "includes Java VM" download option. +
      • Choosing this download option installs IBM's 1.1.8 VM for NetLogo's private use only. Other programs on your system are not affected. +
      • NetLogo runs much faster on this VM than any other VM. +
      • Even if you have downloaded NetLogo before, you should still choose "Includes Java VM". The bundled VM is not shared between different versions of NetLogo. +
      • You should only choose the "without Java VM" download if either: +
          + +
        • You have already, separately and independently from any NetLogo + download, installed the IBM 1.1 VM on your system yourself. + +
        • You are certain you wish to try using a VM other than our + recommended VM. + +
        + + +
      +


      + (Go To Top)
      +

    +
    + + + + +
    +

    +


    + +
    +
    +

    Mac OS Classic (8.6 or greater) Instructions:
    + +

      +

      Instructions +

        +
      • After downloading, double-click NetLogo1.1Installer +
      +


      + Notes
      +

        +
      • Requires PowerPC and Mac OS 8.6 or later + + +
      • If you do not already have Macintosh Runtime for Java version 2.2.5 on your system, or if you are not sure, be sure to download the package above which includes it. +
      • The installer is MacBinary encoded and will be automatically decoded after downloading.
        + If it does not, you can decode it using StuffIt Expander 4.5 or later +
      +


      + (Go To Top)
      +

    +
    + + + + +
    +

    +


    + +
    +
    +

    Mac OS X Instructions:
    + +

      +

      Instructions +

        +
      • After downloading, double-click NetLogo1.1Installer +
      +


      + Notes
      +

        +
      • NetLogo will run as a Classic application under the Classic environment. (We plan to support OS X natively in a future version.) +
      • Requires PowerPC and Mac OS X 10.0 or later +
      • The installer will be recognized by Stuffit Expander and will be automatically decoded after downloading.
        + If it does not, you can decode it using StuffIt Expander 6.0 or later +
      +


      + (Go To Top)
      +

    +
    + + + + +
    +

    +


    + +
    +
    +

    Linux Instructions:
    + +

      +

      Instructions +

        +
      • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
      • At the prompt type:  sh ./NetLogo1_1Installer.bin +
      +


      + Notes
      +

        + + + +
      • If you do not have a Java virtual machine installed, be sure to download the package above which includes one. Otherwise you may need to download one from Sun's Java web site or contact your OS manufacturer. +
      +


      + (Go To Top)
      +

    +
    + + + + + + + +
    +

    +


    + +
    +
    +

    AIX Instructions:
    + +

      +

      Instructions +

        +
      • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
      • At the prompt type:  sh ./NetLogo1_1Installer.bin +
      +


      + Notes
      +

        + +
      • You need to install a Java 1.1.4 (or later) virtual machine. You can download one from Sun's Java web site. + + +
      +


      + (Go To Top)
      +

    +
    + + + + + + + +
    +

    +


    + +
    +
    +

    Solaris Instructions:
    + +

      +

      Instructions +

        +
      • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
      • At the prompt type:  sh ./NetLogo1_1Installer.bin +
      +


      + Notes
      +

        + +
      • You need to install a Java 1.1.4 (or later) virtual machine. You can download one from Sun's Java web site. + + +
      +


      + (Go To Top)
      +

    +
    + + + + + + + +
    +

    +


    + +
    +
    +

    HP-UX Instructions:
    + +

      +

      Instructions +

        +
      • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
      • At the prompt type:  sh ./NetLogo1_1Installer.bin +
      +


      + Notes
      +

        + +
      • You need to install a Java 1.1.4 (or later) virtual machine. You can download one from Sun's Java web site or contact your OS manufacturer. + + +
      +


      + (Go To Top)
      +

    +
    + + + + + + + +
    +

    +


    + +
    +
    +

    Unix Instructions:
    + +

      +

      Instructions +

        +
      • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
      • At the prompt type:  sh ./NetLogo1_1Installer.bin +
      +


      + Notes
      +

        + +
      • You need to install a Java 1.1.4 (or later) virtual machine. You can download one from Sun's Java web site or contact your OS manufacturer. +
      • If you do not have a Java virtual machine installed, be sure to download the package above which includes one. Otherwise you may need to download one from Sun's Java web site or contact your OS manufacturer. +
      +


      + (Go To Top)
      +

    +
    + + + + + + + + +
    +

    +


    + +
    +
    +

    All Other Platforms Instructions:
    + +

    +
    +
      +

      Instructions (Unix or Unix-like operating systems) +

        +
      • For Java 2, after downloading, type
        +   java -jar NetLogo1_1Installer.jar +
      • For Java 1.1, after downloading, type
        +   jre -cp NetLogo1_1Installer.jar install +
      • If that does not work, try
        +   java -classpath [path to]classes.zip:NetLogo1_1Installer.jar install +
      • If that does not work either, on sh-like shells, try
        +   cd [to directory where NetLogo1_1Installer.jar is located]
        +   CLASSPATH=NetLogo1_1Installer.jar
        +   export CLASSPATH
        +   java install +
      • Or for csh-like shells, try
        +   cd [to directory where NetLogo1_1Installer.jar is located]
        +   setenv CLASSPATH NetLogo1_1Installer.jar
        +   java install +
      +


      + Instructions (for other platforms)
      +

        +
      • Be sure you have Java 1.1.6 or later installed. You can download Java from Sun's site +
      • In a console window, change to the directory where you downloaded NetLogo1_1Installer.jar to before running the installer +
      • Your operating system may invoke Java in a different way. To start the installer, add NetLogo1_1Installer.jar to your CLASSPATH, then start the main class of the installer named install +
      +


      + (Go To Top)
      +

    +
    + + + +
    + +Installers created with InstallAnywhere.
    +InstallAnywhere is a registered trademark of Zero G Software, Inc.
    +Mac OS is a registered trademark of Apple Computer, Inc.
    +Solaris and Java are trademarks of Sun Microsystems, Inc.
    +Windows is a registered trademark of Microsoft Corporation.
    +All other marks are properties of their respective owners.
    +
    + +
    + + + + diff --git a/src/pages/downloads/archive/html/1.1f/index.html b/src/pages/downloads/archive/html/1.1f/index.html new file mode 100644 index 00000000..265158bf --- /dev/null +++ b/src/pages/downloads/archive/html/1.1f/index.html @@ -0,0 +1,1300 @@ + + + +NetLogo 1.1 Rev F Downloads + + + + + + + + + +

    NetLogo banner +

    + +

    NetLogo 1.1 Rev F Downloads

    + +

    + + + +

    Attention Windows users: +

      +
    • NetLogo runs fastest with the IBM 1.1 VM. Therefore we strongly +recommend the "Includes Java VM" option. (Questions? See below.) +
    • If you are running anti-virus software there may be a long pause +(as much as two minutes) near the end of the download process. +
    + + + +


    + +
    + + + + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Platform +
    + + includes Java VM
    (recommended) +
    +
    +
    + + without Java VM +
    +
    +
    + Instructions
    +
    +
    + +
    +
    +
    + + + Windows + +
    +
    + +
    + + Download + (13.2M) +
    + +
    + +
    + + Download + (8.4M) +
    + +
    +
    + View
    +
    +
    + +
    +
    +
    + + + Mac OS 8 or 9 + +
    +
    + +
    + + Download + (12.2M) +
    + +
    + +
    + Download + (8.4M) +
    + +
    +
    + View
    +
    +
    + +
    +
    +
    + + + Mac OS X + +
    +
    + + +
    + Download + (8.3M) +
    + +
    +
    + View
    +
    +
    + +
    +
    +
    + + + Linux + +
    +
    + +
    + Download + (40.9M) +
    + +
    + +
    + Download + (8.2M) +
    + +
    +
    + View
    +
    +
    + +
    +
    +
    + + + AIX + +
    +
    + + + +
    + Download + (8.2M) +
    + +
    +
    + View
    +
    +
    + +
    +
    +
    + + + Solaris + +
    +
    + + + +
    + Download + (8.2M) +
    + +
    +
    + View
    +
    +
    + +
    +
    +
    + + + HP-UX + +
    +
    + + + +
    + Download + (8.2M) +
    + +
    +
    + View
    +
    +
    + +
    +
    +
    + + + Unix + +
    +
    + + +
    + Download + (8.2M) +
    + +
    +
    + View
    +
    +
    + +
    +
    + +
    + + + Other Java-enabled Platforms + +
    +
    + + +
    + Download + (8.1M) +
    + +
    +
    + View
    +
    + +

    + + + +

    +


    + +
    +

    Windows Instructions:
    + +

      +

      Instructions +

        +
      • After downloading, double-click NetLogo1.1Installer.exe +
      +


      + Notes
      +

        +
      • We strongly recommend the "includes Java VM" download option. +
      • Choosing this download option installs IBM's 1.1.8 VM for NetLogo's private use only. Other programs on your system are not affected. +
      • NetLogo runs much faster on this VM than any other VM. +
      • Even if you have downloaded NetLogo before, you should still choose "Includes Java VM". The bundled VM is not shared between different versions of NetLogo. +
      • You should only choose the "without Java VM" download if either: +
          + +
        • You have already, separately and independently from any NetLogo + download, installed the IBM 1.1 VM on your system yourself. + +
        • You are certain you wish to try using a VM other than our + recommended VM. + +
        + + +
      +


      + (Go To Top)
      +

    +
    + + + + +
    +

    +


    + +
    +
    +

    Mac OS Classic (8.6 or greater) Instructions:
    + +

      +

      Instructions +

        +
      • After downloading, double-click NetLogo1.1Installer +
      +


      + Notes
      +

        +
      • Requires PowerPC and Mac OS 8.6 or later + + +
      • If you do not already have Macintosh Runtime for Java version 2.2.5 on your system, or if you are not sure, be sure to download the package above which includes it. +
      • The installer is MacBinary encoded and will be automatically decoded after downloading.
        + If it does not, you can decode it using StuffIt Expander 4.5 or later +
      +


      + (Go To Top)
      +

    +
    + + + + +
    +

    +


    + +
    +
    +

    Mac OS X Instructions:
    + +

      +

      Instructions +

        +
      • After downloading, double-click NetLogo1.1Installer +
      +


      + Notes
      +

        +
      • NetLogo will run as a Classic application under the Classic environment. (We plan to support OS X natively in a future version.) +
      • Requires PowerPC and Mac OS X 10.0 or later +
      • The installer will be recognized by Stuffit Expander and will be automatically decoded after downloading.
        + If it does not, you can decode it using StuffIt Expander 6.0 or later +
      +


      + (Go To Top)
      +

    +
    + + + + +
    +

    +


    + +
    +
    +

    Linux Instructions:
    + +

      +

      Instructions +

        +
      • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
      • At the prompt type:  sh ./NetLogo1_1Installer.bin +
      +


      + Notes
      +

        + + + +
      • If you do not have a Java virtual machine installed, be sure to download the package above which includes one. Otherwise you may need to download one from Sun's Java web site or contact your OS manufacturer. +
      +


      + (Go To Top)
      +

    +
    + + + + + + + +
    +

    +


    + +
    +
    +

    AIX Instructions:
    + +

      +

      Instructions +

        +
      • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
      • At the prompt type:  sh ./NetLogo1_1Installer.bin +
      +


      + Notes
      +

        + +
      • You need to install a Java 1.1.4 (or later) virtual machine. You can download one from Sun's Java web site. + + +
      +


      + (Go To Top)
      +

    +
    + + + + + + + +
    +

    +


    + +
    +
    +

    Solaris Instructions:
    + +

      +

      Instructions +

        +
      • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
      • At the prompt type:  sh ./NetLogo1_1Installer.bin +
      +


      + Notes
      +

        + +
      • You need to install a Java 1.1.4 (or later) virtual machine. You can download one from Sun's Java web site. + + +
      +


      + (Go To Top)
      +

    +
    + + + + + + + +
    +

    +


    + +
    +
    +

    HP-UX Instructions:
    + +

      +

      Instructions +

        +
      • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
      • At the prompt type:  sh ./NetLogo1_1Installer.bin +
      +


      + Notes
      +

        + +
      • You need to install a Java 1.1.4 (or later) virtual machine. You can download one from Sun's Java web site or contact your OS manufacturer. + + +
      +


      + (Go To Top)
      +

    +
    + + + + + + + +
    +

    +


    + +
    +
    +

    Unix Instructions:
    + +

      +

      Instructions +

        +
      • After downloading open a shell and,  cd to the directory where you downloaded the installer. +
      • At the prompt type:  sh ./NetLogo1_1Installer.bin +
      +


      + Notes
      +

        + +
      • You need to install a Java 1.1.4 (or later) virtual machine. You can download one from Sun's Java web site or contact your OS manufacturer. +
      • If you do not have a Java virtual machine installed, be sure to download the package above which includes one. Otherwise you may need to download one from Sun's Java web site or contact your OS manufacturer. +
      +


      + (Go To Top)
      +

    +
    + + + + + + + + +
    +

    +


    + +
    +
    +

    All Other Platforms Instructions:
    + +

    +
    +
      +

      Instructions (Unix or Unix-like operating systems) +

        +
      • For Java 2, after downloading, type
        +   java -jar NetLogo1_1Installer.jar +
      • For Java 1.1, after downloading, type
        +   jre -cp NetLogo1_1Installer.jar install +
      • If that does not work, try
        +   java -classpath [path to]classes.zip:NetLogo1_1Installer.jar install +
      • If that does not work either, on sh-like shells, try
        +   cd [to directory where NetLogo1_1Installer.jar is located]
        +   CLASSPATH=NetLogo1_1Installer.jar
        +   export CLASSPATH
        +   java install +
      • Or for csh-like shells, try
        +   cd [to directory where NetLogo1_1Installer.jar is located]
        +   setenv CLASSPATH NetLogo1_1Installer.jar
        +   java install +
      +


      + Instructions (for other platforms)
      +

        +
      • Be sure you have Java 1.1.6 or later installed. You can download Java from Sun's site +
      • In a console window, change to the directory where you downloaded NetLogo1_1Installer.jar to before running the installer +
      • Your operating system may invoke Java in a different way. To start the installer, add NetLogo1_1Installer.jar to your CLASSPATH, then start the main class of the installer named install +
      +


      + (Go To Top)
      +

    +
    + + + +
    + +Installers created with InstallAnywhere.
    +InstallAnywhere is a registered trademark of Zero G Software, Inc.
    +Mac OS is a registered trademark of Apple Computer, Inc.
    +Solaris and Java are trademarks of Sun Microsystems, Inc.
    +Windows is a registered trademark of Microsoft Corporation.
    +All other marks are properties of their respective owners.
    +
    + +
    + + + + diff --git a/src/pages/downloads/archive/html/1.2.1/index.html b/src/pages/downloads/archive/html/1.2.1/index.html new file mode 100644 index 00000000..2413a700 --- /dev/null +++ b/src/pages/downloads/archive/html/1.2.1/index.html @@ -0,0 +1,830 @@ + + + +NetLogo 1.2.1 Downloads + + + + + + + + + +

    NetLogo banner +

    + +

    NetLogo 1.2.1 Downloads

    + +

    + + + +

    Attention Windows users: +

      +
    • NetLogo runs fastest and is most reliable with the IBM 1.1 VM. Therefore we strongly +recommend the "Includes Java VM" option. (Questions? See below.) +
    • If you are running anti-virus software there may be a long pause +(as much as two minutes) near the end of the download process. +
    + +

    Attention Mac OS X users: +

      +
    • If you are installing under Mac OS X, you must choose the Mac + OS X download. The installer for Mac OS 8 or 9 does not work + properly on OS X. +
    + +
    + +


    + +
    + + + + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Platform +
    + + includes Java VM
    (recommended) +
    +
    +
    + + without Java VM +
    +
    +
    + Details
    +
    +
    + +
    +
    +
    + + + Windows + +
    +
    + +
    + Download (14.9 MB)
    + +
    + +
    + Download (10.0 MB)
    + +
    +
    + View
    +
    +
    + +
    +
    +
    + + + Mac OS X + +
    +
    + + +
    + Download (9.4 MB)
    + +
    +
    + View
    +
    +
    + +
    +
    +
    + + + Mac OS 8 or 9 + +
    +
    + +
    + Download (13.9 MB)
    + +
    + +
    + Download (10.1 MB)
    + +
    +
    + View
    +
    +
    + +
    +
    + +
    + + + Other Java-enabled Platforms + +
    +
    + + +
    + Download (6.6 MB)
    + +
    +
    + View
    +
    + +

    + + + +

    +


    + +
    +

    Windows Details:
    + +

      +
    • We strongly recommend the "includes Java VM" download option. +
    • Choosing this download option installs IBM's 1.1.8 VM for NetLogo's private use only. Other programs on your system are not affected. +
    • NetLogo runs much faster on this VM than any other VM, + and is more reliable. +
    • Even if you have downloaded NetLogo before, you should still choose "Includes Java VM". The bundled VM is not shared between different versions of NetLogo. +
    • You should only choose the "without Java VM" download if either: +
        + +
      • You have already, separately and independently from any NetLogo + download, installed the IBM 1.1 VM on your system yourself. + +
      • You are certain you wish to try using a VM other than our + recommended VM. + +
      + +
    + +


    + (Go To Top)
    +

    + + + + +
    +

    +


    + +
    +
    +

    Mac OS X Details:
    + +

      +
    • Once downloaded, NetLogo may be run either as a native OS X application, or in the Classic environment. +
    +


    + (Go To Top)
    + +

    + + + +
    +

    +


    + +
    +
    +

    Mac OS 8 or 9 Details:
    + +

      +
    • After downloading, double-click NetLogo1.2.1Installer +
    • If you do not already have Macintosh Runtime for Java version 2.2.5 on your system, or if you are not sure, be sure to download the package above which includes it. +
    • The installer is MacBinary encoded and will be automatically decoded after downloading.
      + If it does not, you can decode it using StuffIt Expander 4.5 or later. +
    +


    + (Go To Top)
    + +

    + + + + + +
    +

    +


    + +
    +
    +

    Other Platform Details:
    + +

    +
    +
      +
    • Be sure you have Java 1.1.8 or later installed. Newer Java versions such as 1.3, 1.4, or 1.4.1 should work even better. You can download Java from Sun's site. +
    • The download is in the form of a .tar.gz file. + You may untar this file into any directory. +
    • Once untarred, the NetLogo application is in the NetLogo.jar file in the netlogo-1.2.1 folder. +
    • The method for starting the application may be different + depending on your operating system and Java virtual machine. + You may be able to just double-click the NetLogo.jar + file in your file manager. + Or, a typical sequence of commands on a Unix-style machine would be: +
      +cd netlogo-1.2.1
      +java -jar NetLogo.jar
      +
    • For the computer HubNet client, substitute HubNet.jar + for NetLogo.jar. +
    +


    + (Go To Top)
    +

    + + + +
    + +Installers created with InstallAnywhere.
    +InstallAnywhere is a registered trademark of Zero G Software, Inc.
    +Mac OS is a registered trademark of Apple Computer, Inc.
    +Java is a trademark of Sun Microsystems, Inc.
    +Windows is a registered trademark of Microsoft Corporation.
    +All other marks are properties of their respective owners.
    +
    + +
    + + + + diff --git a/src/pages/downloads/archive/html/1.2/index.html b/src/pages/downloads/archive/html/1.2/index.html new file mode 100644 index 00000000..913c475e --- /dev/null +++ b/src/pages/downloads/archive/html/1.2/index.html @@ -0,0 +1,830 @@ + + + +NetLogo 1.2.1 Downloads + + + + + + + + + +

    NetLogo banner +

    + +

    NetLogo 1.2.1 Downloads

    + +

    + + + +

    Attention Windows users: +

      +
    • NetLogo runs fastest and is most reliable with the IBM 1.1 VM. Therefore we strongly +recommend the "Includes Java VM" option. (Questions? See below.) +
    • If you are running anti-virus software there may be a long pause +(as much as two minutes) near the end of the download process. +
    + +

    Attention Mac OS X users: +

      +
    • If you are installing under Mac OS X, you must choose the Mac + OS X download. The installer for Mac OS 8 or 9 does not work + properly on OS X. +
    + +
    + +


    + +
    + + + + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Platform +
    + + includes Java VM
    (recommended) +
    +
    +
    + + without Java VM +
    +
    +
    + Details
    +
    +
    + +
    +
    +
    + + + Windows + +
    +
    + +
    + Download (14.9 MB)
    + +
    + +
    + Download (10.0 MB)
    + +
    +
    + View
    +
    +
    + +
    +
    +
    + + + Mac OS X + +
    +
    + + +
    + Download (9.4 MB)
    + +
    +
    + View
    +
    +
    + +
    +
    +
    + + + Mac OS 8 or 9 + +
    +
    + +
    + Download (13.9 MB)
    + +
    + +
    + Download (10.1 MB)
    + +
    +
    + View
    +
    +
    + +
    +
    + +
    + + + Other Java-enabled Platforms + +
    +
    + + +
    + Download (6.6 MB)
    + +
    +
    + View
    +
    + +

    + + + +

    +


    + +
    +

    Windows Details:
    + +

      +
    • We strongly recommend the "includes Java VM" download option. +
    • Choosing this download option installs IBM's 1.1.8 VM for NetLogo's private use only. Other programs on your system are not affected. +
    • NetLogo runs much faster on this VM than any other VM, + and is more reliable. +
    • Even if you have downloaded NetLogo before, you should still choose "Includes Java VM". The bundled VM is not shared between different versions of NetLogo. +
    • You should only choose the "without Java VM" download if either: +
        + +
      • You have already, separately and independently from any NetLogo + download, installed the IBM 1.1 VM on your system yourself. + +
      • You are certain you wish to try using a VM other than our + recommended VM. + +
      + +
    + +


    + (Go To Top)
    +

    + + + + +
    +

    +


    + +
    +
    +

    Mac OS X Details:
    + +

      +
    • Once downloaded, NetLogo may be run either as a native OS X application, or in the Classic environment. +
    +


    + (Go To Top)
    + +

    + + + +
    +

    +


    + +
    +
    +

    Mac OS 8 or 9 Details:
    + +

      +
    • After downloading, double-click NetLogo1.2.1Installer +
    • If you do not already have Macintosh Runtime for Java version 2.2.5 on your system, or if you are not sure, be sure to download the package above which includes it. +
    • The installer is MacBinary encoded and will be automatically decoded after downloading.
      + If it does not, you can decode it using StuffIt Expander 4.5 or later. +
    +


    + (Go To Top)
    + +

    + + + + + +
    +

    +


    + +
    +
    +

    Other Platform Details:
    + +

    +
    +
      +
    • Be sure you have Java 1.1.8 or later installed. Newer Java versions such as 1.3, 1.4, or 1.4.1 should work even better. You can download Java from Sun's site. +
    • The download is in the form of a .tar.gz file. + You may untar this file into any directory. +
    • Once untarred, the NetLogo application is in the NetLogo.jar file in the netlogo-1.2.1 folder. +
    • The method for starting the application may be different + depending on your operating system and Java virtual machine. + You may be able to just double-click the NetLogo.jar + file in your file manager. + Or, a typical sequence of commands on a Unix-style machine would be: +
      +cd netlogo-1.2.1
      +java -jar NetLogo.jar
      +
    • For the computer HubNet client, substitute HubNet.jar + for NetLogo.jar. +
    +


    + (Go To Top)
    +

    + + + +
    + +Installers created with InstallAnywhere.
    +InstallAnywhere is a registered trademark of Zero G Software, Inc.
    +Mac OS is a registered trademark of Apple Computer, Inc.
    +Java is a trademark of Sun Microsystems, Inc.
    +Windows is a registered trademark of Microsoft Corporation.
    +All other marks are properties of their respective owners.
    +
    + +
    + + + + diff --git a/src/pages/downloads/archive/html/1.3.1/index.html b/src/pages/downloads/archive/html/1.3.1/index.html new file mode 100644 index 00000000..c2141d68 --- /dev/null +++ b/src/pages/downloads/archive/html/1.3.1/index.html @@ -0,0 +1,831 @@ + + + +NetLogo 1.3.1 Downloads + + + + + + + + + +

    NetLogo banner +

    + +

    NetLogo 1.3.1 Downloads

    + +

    + + + +

    Attention Windows users: +

      +
    • NetLogo runs fastest and is most reliable with the IBM 1.1 VM. Therefore we strongly +recommend the "Includes Java VM" option. (Questions? See below.) +
    • If you are running anti-virus software there may be a long pause +(as much as two minutes) near the end of the download process. +
    + +

    Attention Mac OS X users: +

      +
    • If you are installing under Mac OS X, you must choose the Mac + OS X download. The installer for Mac OS 8 or 9 does not work + properly on OS X. +
    + +
    + +


    + +
    + + + + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Platform +
    + + includes Java VM
    (recommended) +
    +
    +
    + + without Java VM +
    +
    +
    + Details
    +
    +
    + +
    +
    +
    + + + Windows + +
    +
    + +
    + Download (15.3 MB)
    + +
    + +
    + Download (10.4 MB)
    + +
    +
    + View
    +
    +
    + +
    +
    +
    + + + Mac OS X + +
    +
    + + +
    + Download (9.7 MB)
    + +
    +
    + View
    +
    +
    + +
    +
    +
    + + + Mac OS 8 or 9 + +
    +
    + +
    + Download (14.3 MB)
    + +
    + +
    + Download (10.5 MB)
    + +
    +
    + View
    +
    +
    + +
    +
    + +
    + + + Other Java-enabled Platforms + +
    +
    + + +
    + Download (7.1 MB)
    + +
    +
    + View
    +
    + +

    + + + +

    +


    + +
    +

    Windows Details:
    + +

      +
    • We strongly recommend the "includes Java VM" download option. +
    • Choosing this download option installs IBM's 1.1.8 VM for NetLogo's private use only. Other programs on your system are not affected. +
    • NetLogo runs much faster on this VM than any other VM, + and is more reliable. +
    • Even if you have downloaded NetLogo before, you should still choose "Includes Java VM". The bundled VM is not shared between different versions of NetLogo. +
    • You should only choose the "without Java VM" download if either: +
        + +
      • You have already, separately and independently from any NetLogo + download, installed the IBM 1.1 VM on your system yourself. + +
      • You are certain you wish to try using a VM other than our + recommended VM. + +
      + +
    + +


    + (Go To Top)
    +

    + + + + +
    +

    +


    + +
    +
    +

    Mac OS X Details:
    + +

      +
    • Once downloaded, NetLogo may be run either as a native OS X application, or in the Classic environment. +
    +


    + (Go To Top)
    + +

    + + + +
    +

    +


    + +
    +
    +

    Mac OS 8 or 9 Details:
    + +

      +
    • After downloading, double-click NetLogo1.3.1Installer +
    • If you do not already have Macintosh Runtime for Java version 2.2.5 on your system, or if you are not sure, be sure to download the package above which includes it. +
    • The installer is MacBinary encoded and will be automatically decoded after downloading.
      + If it does not, you can decode it using StuffIt Expander 4.5 or later. +
    +


    + (Go To Top)
    + +

    + + + + + +
    +

    +


    + +
    +
    +

    Other Platform Details:
    + +

    +
    +
      +
    • Be sure you have Java 1.1.8 or later installed. Newer Java versions such as 1.3, 1.4, or 1.4.1 should work even better. You can download Java from Sun's site. +
    • The download is in the form of a .tar.gz file. + You may untar this file into any directory. +
    • Once untarred, the NetLogo application is in the NetLogo.jar file in the netlogo-1.3.1 folder. +
    • The method for starting the application may be different + depending on your operating system and Java virtual machine. + You may be able to just double-click the NetLogo.jar + file in your file manager. + Or, a typical sequence of commands on a Unix-style machine would be: +
      +cd netlogo-1.3.1
      +java -jar NetLogo.jar
      +
    • For the computer HubNet client, substitute HubNet.jar + for NetLogo.jar. +
    +


    + (Go To Top)
    +

    + + + +
    + +Installers created with InstallAnywhere.
    +InstallAnywhere is a registered trademark of Zero G Software, Inc.
    +Mac OS is a registered trademark of Apple Computer, Inc.
    +Java is a trademark of Sun Microsystems, Inc.
    +Windows is a registered trademark of Microsoft Corporation.
    +All other marks are properties of their respective owners.
    +
    + +
    + + + + + diff --git a/src/pages/downloads/archive/html/1.3/index.html b/src/pages/downloads/archive/html/1.3/index.html new file mode 100644 index 00000000..c48ee001 --- /dev/null +++ b/src/pages/downloads/archive/html/1.3/index.html @@ -0,0 +1,831 @@ + + + +NetLogo 1.3 Downloads + + + + + + + + + +

    NetLogo banner +

    + +

    NetLogo 1.3 Downloads

    + +

    + + + +

    Attention Windows users: +

      +
    • NetLogo runs fastest and is most reliable with the IBM 1.1 VM. Therefore we strongly +recommend the "Includes Java VM" option. (Questions? See below.) +
    • If you are running anti-virus software there may be a long pause +(as much as two minutes) near the end of the download process. +
    + +

    Attention Mac OS X users: +

      +
    • If you are installing under Mac OS X, you must choose the Mac + OS X download. The installer for Mac OS 8 or 9 does not work + properly on OS X. +
    + +
    + +


    + +
    + + + + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Platform +
    + + includes Java VM
    (recommended) +
    +
    +
    + + without Java VM +
    +
    +
    + Details
    +
    +
    + +
    +
    +
    + + + Windows + +
    +
    + +
    + Download (15.3 MB)
    + +
    + +
    + Download (10.4 MB)
    + +
    +
    + View
    +
    +
    + +
    +
    +
    + + + Mac OS X + +
    +
    + + +
    + Download (9.7 MB)
    + +
    +
    + View
    +
    +
    + +
    +
    +
    + + + Mac OS 8 or 9 + +
    +
    + +
    + Download (14.3 MB)
    + +
    + +
    + Download (10.5 MB)
    + +
    +
    + View
    +
    +
    + +
    +
    + +
    + + + Other Java-enabled Platforms + +
    +
    + + +
    + Download (7.1 MB)
    + +
    +
    + View
    +
    + +

    + + + +

    +


    + +
    +

    Windows Details:
    + +

      +
    • We strongly recommend the "includes Java VM" download option. +
    • Choosing this download option installs IBM's 1.1.8 VM for NetLogo's private use only. Other programs on your system are not affected. +
    • NetLogo runs much faster on this VM than any other VM, + and is more reliable. +
    • Even if you have downloaded NetLogo before, you should still choose "Includes Java VM". The bundled VM is not shared between different versions of NetLogo. +
    • You should only choose the "without Java VM" download if either: +
        + +
      • You have already, separately and independently from any NetLogo + download, installed the IBM 1.1 VM on your system yourself. + +
      • You are certain you wish to try using a VM other than our + recommended VM. + +
      + +
    + +


    + (Go To Top)
    +

    + + + + +
    +

    +


    + +
    +
    +

    Mac OS X Details:
    + +

      +
    • Once downloaded, NetLogo may be run either as a native OS X application, or in the Classic environment. +
    +


    + (Go To Top)
    + +

    + + + +
    +

    +


    + +
    +
    +

    Mac OS 8 or 9 Details:
    + +

      +
    • After downloading, double-click NetLogo1.3Installer +
    • If you do not already have Macintosh Runtime for Java version 2.2.5 on your system, or if you are not sure, be sure to download the package above which includes it. +
    • The installer is MacBinary encoded and will be automatically decoded after downloading.
      + If it does not, you can decode it using StuffIt Expander 4.5 or later. +
    +


    + (Go To Top)
    + +

    + + + + + +
    +

    +


    + +
    +
    +

    Other Platform Details:
    + +

    +
    +
      +
    • Be sure you have Java 1.1.8 or later installed. Newer Java versions such as 1.3, 1.4, or 1.4.1 should work even better. You can download Java from Sun's site. +
    • The download is in the form of a .tar.gz file. + You may untar this file into any directory. +
    • Once untarred, the NetLogo application is in the NetLogo.jar file in the netlogo-1.3 folder. +
    • The method for starting the application may be different + depending on your operating system and Java virtual machine. + You may be able to just double-click the NetLogo.jar + file in your file manager. + Or, a typical sequence of commands on a Unix-style machine would be: +
      +cd netlogo-1.3
      +java -jar NetLogo.jar
      +
    • For the computer HubNet client, substitute HubNet.jar + for NetLogo.jar. +
    +


    + (Go To Top)
    +

    + + + +
    + +Installers created with InstallAnywhere.
    +InstallAnywhere is a registered trademark of Zero G Software, Inc.
    +Mac OS is a registered trademark of Apple Computer, Inc.
    +Java is a trademark of Sun Microsystems, Inc.
    +Windows is a registered trademark of Microsoft Corporation.
    +All other marks are properties of their respective owners.
    +
    + +
    + + + + + diff --git a/src/pages/downloads/archive/html/2.0.1/index.html b/src/pages/downloads/archive/html/2.0.1/index.html new file mode 100644 index 00000000..ad81940b --- /dev/null +++ b/src/pages/downloads/archive/html/2.0.1/index.html @@ -0,0 +1,782 @@ + + + + + + NetLogo 2.0.1 Downloads + + + + + + + + + + + + + + +

    NetLogo banner

    +

    + + + + +
    +

    NetLogo 2.0.1 Downloads

    + +

    + Notes for Windows users: +

    +
      +
    • + NetLogo runs fastest and is most reliable on the Sun 1.4.2 VM. Therefore we strongly recommend the + "Includes Java VM" option. (Questions? See below.) +
    • + +
    • + If you are running anti-virus software there may be a long pause (as much as two minutes) near the end + of the download process. +
    • +
    + +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Platform +
    + includes Java VM
    (recommended)
    +
    +
    +
    + without Java VM +
    +
    +
    + Details +
    +
    +
    + +
    +
    + + +
    + + Windows + +
    +
    +
    + Download (21.6 MB) +
    +
    +
    + Download (9.3 MB) +
    +
    +
    + View +
    +
    +
    + +
    +
    + + +
    + + Mac OS X + +
    +
    +
    + Download (8.8 MB) +
    +
    +
    + View +
    +
    +
    + +
    +
    + + +
    + + Other Java-enabled Platforms + +
    +
    +
    + Download (8.2 MB) +
    +
    +
    + View +
    +
    + +

    + + + + +
    + +

    +
    + +
    +

    + Windows Details:
    +

    + +
      +
    • We strongly recommend the "includes Java VM" download option.
    • +
    • + Choosing this download option installs Sun's 1.4.2 VM for NetLogo's private use only. Other programs on + your system are not affected. +
    • +
    • NetLogo runs faster and is more reliable on this VM than any other VM.
    • +
    • + Even if you have downloaded NetLogo before, you should still choose "Includes Java VM". The bundled VM + is not shared between different versions of NetLogo. +
    • +
    • + You should only choose the "without Java VM" download if either: +
        +
      • + You have already, separately and independently from any NetLogo download, installed the Sun 1.4.2 VM + on your system yourself. +
      • + +
      • You are certain you wish to try using a VM other than our recommended VM.
      • +
      +
    • +
    + +

    +
    + (Go To Top)
    +

    +
    + + +
    +

    +
    +
    +
    +

    + Mac OS X Details:
    +

    + +
      +
    • + On OS X 10.2, NetLogo requires Java 1.4.1 Update 1, which is available from Apple via Software Update. +
    • +
    + +

    +
    + (Go To Top)
    +

    +
    + + + +
    +

    +
    +
    +
    +

    + Other Platform Details:
    +

    +
    + +
    +
      +
    • + Be sure you have Java 1.4.1 or later installed. Newer Java versions such as 1.4.2 should work even + better. You can download Java from Sun's site. +
    • +
    • + The download is in the form of a .tar.gz file. You may untar this file into any directory. +
    • + +
    • + Once untarred, the NetLogo application is in the NetLogo.jar file in the + netlogo-2.0.1 folder. +
    • +
    • + The method for starting the application may be different depending on your operating system and Java + virtual machine. You may be able to just double-click the NetLogo.jar + file in your file manager. Or, a typical sequence of commands on a Unix-style machine would be: +
      +cd netlogo-2.0.1
      +java -jar NetLogo.jar
      +
    • + +
    • For the computer HubNet client, substitute HubNet.jar for NetLogo.jar.
    • +
    + +

    +
    + (Go To Top)
    +

    +
    + +
    + + Installers created with InstallAnywhere.
    + InstallAnywhere is a registered trademark of Zero G Software, Inc.
    + Mac OS X is a registered trademark of Apple Computer, Inc.
    + Java is a trademark of Sun Microsystems, Inc.
    + Windows is a registered trademark of Microsoft Corporation.
    + All other marks are properties of their respective owners.
    +
    +
    + + diff --git a/src/pages/downloads/archive/html/2.0.2/index.html b/src/pages/downloads/archive/html/2.0.2/index.html new file mode 100644 index 00000000..ec1b0d08 --- /dev/null +++ b/src/pages/downloads/archive/html/2.0.2/index.html @@ -0,0 +1,782 @@ + + + + + + NetLogo 2.0.2 Downloads + + + + + + + + + + + + + + +

    NetLogo banner

    +

    + + + + +
    +

    NetLogo 2.0.2 Downloads

    + +

    + Notes for Windows users: +

    +
      +
    • + NetLogo runs fastest and is most reliable on the Sun 1.4.2 VM. Therefore we strongly recommend the + "Includes Java VM" option. (Questions? See below.) +
    • + +
    • + If you are running anti-virus software there may be a long pause (as much as two minutes) near the end + of the download process. +
    • +
    + +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Platform +
    + includes Java VM
    (recommended)
    +
    +
    +
    + without Java VM +
    +
    +
    + Details +
    +
    +
    + +
    +
    + + +
    + + Windows + +
    +
    +
    + Download (22.1 MB) +
    +
    +
    + Download (9.6 MB) +
    +
    +
    + View +
    +
    +
    + +
    +
    + + +
    + + Mac OS X + +
    +
    +
    + Download (9.1 MB) +
    +
    +
    + View +
    +
    +
    + +
    +
    + + +
    + + Other Java-enabled Platforms + +
    +
    +
    + Download (8.5 MB) +
    +
    +
    + View +
    +
    + +

    + + + + +
    + +

    +
    + +
    +

    + Windows Details:
    +

    + +
      +
    • We strongly recommend the "includes Java VM" download option.
    • +
    • + Choosing this download option installs Sun's 1.4.2 VM for NetLogo's private use only. Other programs on + your system are not affected. +
    • +
    • NetLogo runs faster and is more reliable on this VM than any other VM.
    • +
    • + Even if you have downloaded NetLogo before, you should still choose "Includes Java VM". The bundled VM + is not shared between different versions of NetLogo. +
    • +
    • + You should only choose the "without Java VM" download if either: +
        +
      • + You have already, separately and independently from any NetLogo download, installed the Sun 1.4.2 VM + on your system yourself. +
      • + +
      • You are certain you wish to try using a VM other than our recommended VM.
      • +
      +
    • +
    + +

    +
    + (Go To Top)
    +

    +
    + + +
    +

    +
    +
    +
    +

    + Mac OS X Details:
    +

    + +
      +
    • + On OS X 10.2, NetLogo requires Java 1.4.1 Update 1, which is available from Apple via Software Update. +
    • +
    + +

    +
    + (Go To Top)
    +

    +
    + + + +
    +

    +
    +
    +
    +

    + Other Platform Details:
    +

    +
    + +
    +
      +
    • + Be sure you have Java 1.4.1 or later installed. Newer Java versions such as 1.4.2 should work even + better. You can download Java from Sun's site. +
    • +
    • + The download is in the form of a .tar.gz file. You may untar this file into any directory. +
    • + +
    • + Once untarred, the NetLogo application is in the NetLogo.jar file in the + netlogo-2.0.2 folder. +
    • +
    • + The method for starting the application may be different depending on your operating system and Java + virtual machine. You may be able to just double-click the NetLogo.jar + file in your file manager. Or, a typical sequence of commands on a Unix-style machine would be: +
      +cd netlogo-2.0.2
      +java -jar NetLogo.jar
      +
    • + +
    • For the computer HubNet client, substitute HubNet.jar for NetLogo.jar.
    • +
    + +

    +
    + (Go To Top)
    +

    +
    + +
    + + Installers created with InstallAnywhere.
    + InstallAnywhere is a registered trademark of Zero G Software, Inc.
    + Mac OS X is a registered trademark of Apple Computer, Inc.
    + Java is a trademark of Sun Microsystems, Inc.
    + Windows is a registered trademark of Microsoft Corporation.
    + All other marks are properties of their respective owners.
    +
    +
    + + diff --git a/src/pages/downloads/archive/html/2.0/index.html b/src/pages/downloads/archive/html/2.0/index.html new file mode 100644 index 00000000..a9f61f6d --- /dev/null +++ b/src/pages/downloads/archive/html/2.0/index.html @@ -0,0 +1,782 @@ + + + + + + NetLogo 2.0.2 Downloads + + + + + + + + + + + + + + +

    NetLogo banner

    +

    + + + + +
    +

    NetLogo 2.0.2 Downloads

    + +

    + Notes for Windows users: +

    +
      +
    • + NetLogo runs fastest and is most reliable on the Sun 1.4.2 VM. Therefore we strongly recommend the + "Includes Java VM" option. (Questions? See below.) +
    • + +
    • + If you are running anti-virus software there may be a long pause (as much as two minutes) near the end + of the download process. +
    • +
    + +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Platform +
    + includes Java VM
    (recommended)
    +
    +
    +
    + without Java VM +
    +
    +
    + Details +
    +
    +
    + +
    +
    + + +
    + + Windows + +
    +
    +
    + Download (22.1 MB) +
    +
    +
    + Download (9.6 MB) +
    +
    +
    + View +
    +
    +
    + +
    +
    + + +
    + + Mac OS X + +
    +
    +
    + Download (9.1 MB) +
    +
    +
    + View +
    +
    +
    + +
    +
    + + +
    + + Other Java-enabled Platforms + +
    +
    +
    + Download (8.5 MB) +
    +
    +
    + View +
    +
    + +

    + + + + +
    + +

    +
    + +
    +

    + Windows Details:
    +

    + +
      +
    • We strongly recommend the "includes Java VM" download option.
    • +
    • + Choosing this download option installs Sun's 1.4.2 VM for NetLogo's private use only. Other programs on + your system are not affected. +
    • +
    • NetLogo runs faster and is more reliable on this VM than any other VM.
    • +
    • + Even if you have downloaded NetLogo before, you should still choose "Includes Java VM". The bundled VM + is not shared between different versions of NetLogo. +
    • +
    • + You should only choose the "without Java VM" download if either: +
        +
      • + You have already, separately and independently from any NetLogo download, installed the Sun 1.4.2 VM + on your system yourself. +
      • + +
      • You are certain you wish to try using a VM other than our recommended VM.
      • +
      +
    • +
    + +

    +
    + (Go To Top)
    +

    +
    + + +
    +

    +
    +
    +
    +

    + Mac OS X Details:
    +

    + +
      +
    • + On OS X 10.2, NetLogo requires Java 1.4.1 Update 1, which is available from Apple via Software Update. +
    • +
    + +

    +
    + (Go To Top)
    +

    +
    + + + +
    +

    +
    +
    +
    +

    + Other Platform Details:
    +

    +
    + +
    +
      +
    • + Be sure you have Java 1.4.1 or later installed. Newer Java versions such as 1.4.2 should work even + better. You can download Java from Sun's site. +
    • +
    • + The download is in the form of a .tar.gz file. You may untar this file into any directory. +
    • + +
    • + Once untarred, the NetLogo application is in the NetLogo.jar file in the + netlogo-2.0.2 folder. +
    • +
    • + The method for starting the application may be different depending on your operating system and Java + virtual machine. You may be able to just double-click the NetLogo.jar + file in your file manager. Or, a typical sequence of commands on a Unix-style machine would be: +
      +cd netlogo-2.0.2
      +java -jar NetLogo.jar
      +
    • + +
    • For the computer HubNet client, substitute HubNet.jar for NetLogo.jar.
    • +
    + +

    +
    + (Go To Top)
    +

    +
    + +
    + + Installers created with InstallAnywhere.
    + InstallAnywhere is a registered trademark of Zero G Software, Inc.
    + Mac OS X is a registered trademark of Apple Computer, Inc.
    + Java is a trademark of Sun Microsystems, Inc.
    + Windows is a registered trademark of Microsoft Corporation.
    + All other marks are properties of their respective owners.
    +
    +
    + + diff --git a/src/pages/downloads/archive/html/2.1.0/index.html b/src/pages/downloads/archive/html/2.1.0/index.html new file mode 100644 index 00000000..09831813 --- /dev/null +++ b/src/pages/downloads/archive/html/2.1.0/index.html @@ -0,0 +1,790 @@ + + + + + + NetLogo 2.1 Downloads + + + + + + + + + + + + + + +

    NetLogo banner

    +

    + + + + +
    +

    NetLogo 2.1 Downloads

    + + + +

    + Notes for Windows users: +

    +
      +
    • + NetLogo runs fastest and is most reliable on the Sun 1.4.2 VM. Therefore we strongly recommend the + "Includes Java VM" option. (Questions? See below.) +
    • + +
    • + If you are running anti-virus software there may be a long pause (as much as two minutes) near the end + of the download process. +
    • +
    + +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Platform +
    + includes Java VM
    (recommended)
    +
    +
    +
    + without Java VM +
    +
    +
    + Details +
    +
    +
    + +
    +
    + + +
    + + Windows + +
    +
    +
    + Download (24.4 MB) +
    +
    +
    + Download (12.0 MB) +
    +
    +
    + View +
    +
    +
    + +
    +
    + + +
    + + Mac OS X + +
    +
    +
    + Download (11.7 MB) +
    +
    +
    + View +
    +
    +
    + +
    +
    + + +
    + + Other Java-enabled Platforms + +
    +
    +
    + Download (10.9 MB) +
    +
    +
    + View +
    +
    + +

    + + + + +
    + +

    +
    + +
    +

    + Windows Details:
    +

    + +
      +
    • We strongly recommend the "includes Java VM" download option.
    • +
    • + Choosing this download option installs Sun's 1.4.2 VM for NetLogo's private use only. Other programs on + your system are not affected. +
    • +
    • NetLogo runs faster and is more reliable on this VM than any other VM.
    • +
    • + Even if you have downloaded NetLogo before, you should still choose "Includes Java VM". The bundled VM + is not shared between different versions of NetLogo. +
    • +
    • + You should only choose the "without Java VM" download if either: +
        +
      • + You have already, separately and independently from any NetLogo download, installed the Sun 1.4.2 VM + on your system yourself. +
      • + +
      • You are certain you wish to try using a VM other than our recommended VM.
      • +
      +
    • +
    + +

    +
    + (Go To Top)
    +

    +
    + + +
    +

    +
    +
    +
    +

    + Mac OS X Details:
    +

    + +
      +
    • On OS X 10.3, Java 1.4.2 Update 1 is recommended. It is available from Apple via Software Update.
    • + +
    • + On OS X 10.2, NetLogo requires Java 1.4.1 Update 1, which is available from Apple via Software Update. +
    • +
    + +

    +
    + (Go To Top)
    +

    +
    + + + +
    +

    +
    +
    +
    +

    + Other Platform Details:
    +

    +
    + +
    +
      +
    • + Be sure you have Java 1.4.1 or later installed. Newer Java versions such as 1.4.2 should work even + better. You can download Java from Sun's site. +
    • +
    • + The download is in the form of a .tar.gz file. You may untar this file into any directory. +
    • + +
    • + Once untarred, the NetLogo application is in the NetLogo.jar file in the + netlogo-2.1 folder. +
    • +
    • + The method for starting the application may be different depending on your operating system and Java + virtual machine. You may be able to just double-click the NetLogo.jar + file in your file manager. Or, a typical sequence of commands on a Unix-style machine would be: +
      +cd netlogo-2.1
      +java -jar NetLogo.jar
      +
    • + +
    • For the computer HubNet client, substitute HubNet.jar for NetLogo.jar.
    • +
    + +

    +
    + (Go To Top)
    +

    +
    + +
    + + Installers created with InstallAnywhere.
    + InstallAnywhere is a registered trademark of Zero G Software, Inc.
    + Mac OS X is a registered trademark of Apple Computer, Inc.
    + Java is a trademark of Sun Microsystems, Inc.
    + Windows is a registered trademark of Microsoft Corporation.
    + All other marks are properties of their respective owners.
    +
    +
    + + diff --git a/src/pages/downloads/archive/html/2.1/index.html b/src/pages/downloads/archive/html/2.1/index.html new file mode 100644 index 00000000..8c82e4d3 --- /dev/null +++ b/src/pages/downloads/archive/html/2.1/index.html @@ -0,0 +1,790 @@ + + + + + + NetLogo 2.1 Downloads + + + + + + + + + + + + + + +

    NetLogo banner

    +

    + + + + +
    +

    NetLogo 2.1 Downloads

    + + + +

    + Notes for Windows users: +

    +
      +
    • + NetLogo runs fastest and is most reliable on the Sun 1.4.2 VM. Therefore we strongly recommend the + "Includes Java VM" option. (Questions? See below.) +
    • + +
    • + If you are running anti-virus software there may be a long pause (as much as two minutes) near the end + of the download process. +
    • +
    + +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Platform +
    + includes Java VM
    (recommended)
    +
    +
    +
    + without Java VM +
    +
    +
    + Details +
    +
    +
    + +
    +
    + + +
    + + Windows + +
    +
    +
    + Download (24.4 MB) +
    +
    +
    + Download (12.0 MB) +
    +
    +
    + View +
    +
    +
    + +
    +
    + + +
    + + Mac OS X + +
    +
    +
    + Download (11.7 MB) +
    +
    +
    + View +
    +
    +
    + +
    +
    + + +
    + + Other Java-enabled Platforms + +
    +
    +
    + Download (10.9 MB) +
    +
    +
    + View +
    +
    + +

    + + + + +
    + +

    +
    + +
    +

    + Windows Details:
    +

    + +
      +
    • We strongly recommend the "includes Java VM" download option.
    • +
    • + Choosing this download option installs Sun's 1.4.2 VM for NetLogo's private use only. Other programs on + your system are not affected. +
    • +
    • NetLogo runs faster and is more reliable on this VM than any other VM.
    • +
    • + Even if you have downloaded NetLogo before, you should still choose "Includes Java VM". The bundled VM + is not shared between different versions of NetLogo. +
    • +
    • + You should only choose the "without Java VM" download if either: +
        +
      • + You have already, separately and independently from any NetLogo download, installed the Sun 1.4.2 VM + on your system yourself. +
      • + +
      • You are certain you wish to try using a VM other than our recommended VM.
      • +
      +
    • +
    + +

    +
    + (Go To Top)
    +

    +
    + + +
    +

    +
    +
    +
    +

    + Mac OS X Details:
    +

    + +
      +
    • On OS X 10.3, Java 1.4.2 Update 1 is recommended. It is available from Apple via Software Update.
    • + +
    • + On OS X 10.2, NetLogo requires Java 1.4.1 Update 1, which is available from Apple via Software Update. +
    • +
    + +

    +
    + (Go To Top)
    +

    +
    + + + +
    +

    +
    +
    +
    +

    + Other Platform Details:
    +

    +
    + +
    +
      +
    • + Be sure you have Java 1.4.1 or later installed. Newer Java versions such as 1.4.2 should work even + better. You can download Java from Sun's site. +
    • +
    • + The download is in the form of a .tar.gz file. You may untar this file into any directory. +
    • + +
    • + Once untarred, the NetLogo application is in the NetLogo.jar file in the + netlogo-2.1 folder. +
    • +
    • + The method for starting the application may be different depending on your operating system and Java + virtual machine. You may be able to just double-click the NetLogo.jar + file in your file manager. Or, a typical sequence of commands on a Unix-style machine would be: +
      +cd netlogo-2.1
      +java -jar NetLogo.jar
      +
    • + +
    • For the computer HubNet client, substitute HubNet.jar for NetLogo.jar.
    • +
    + +

    +
    + (Go To Top)
    +

    +
    + +
    + + Installers created with InstallAnywhere.
    + InstallAnywhere is a registered trademark of Zero G Software, Inc.
    + Mac OS X is a registered trademark of Apple Computer, Inc.
    + Java is a trademark of Sun Microsystems, Inc.
    + Windows is a registered trademark of Microsoft Corporation.
    + All other marks are properties of their respective owners.
    +
    +
    + + diff --git a/src/pages/downloads/archive/html/3.0.0/index.html b/src/pages/downloads/archive/html/3.0.0/index.html new file mode 100644 index 00000000..7c74af40 --- /dev/null +++ b/src/pages/downloads/archive/html/3.0.0/index.html @@ -0,0 +1,142 @@ + + + + + +NetLogo 3.0 Downloads + + + + + +

    + +

    + + +
    +

    NetLogo 3.0 Downloads

    +


    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Operating System    +
    + + includes Java
    (recommended) +
    +
    +
    + + does not
    include Java +
    +
    Windows +
    + + Download (43M) +
    +
    +
    + + Download (30M) +
    + +
    Mac OS X + +
    + + Download (30M) +
    +
    Other +
    + + Download (29M) +
    +
    + +

    + + +

    +


    + +

    Notes for Windows users:
    + +

      +
    • Certain anti-virus software may cause a long + pause (as much as two minutes) near the end of the download + process. +
    • We strongly recommend the "includes Java" download. This choice installs Java (version 1.4.2) for NetLogo's private use only. Other programs on your system are not affected. +
    • Even if you have downloaded NetLogo before, you should still choose "Includes Java". The included Java is not shared between different versions of NetLogo. +
    • You should only choose the "does not include Java" download if + you have already, separately and independently from any NetLogo + download, installed Java (version 1.4.2 or higher) on your system yourself. + +
    + + + +


    + +

    +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

    + + + + diff --git a/src/pages/downloads/archive/html/3.0.1/index.html b/src/pages/downloads/archive/html/3.0.1/index.html new file mode 100644 index 00000000..2523db31 --- /dev/null +++ b/src/pages/downloads/archive/html/3.0.1/index.html @@ -0,0 +1,142 @@ + + + + + +NetLogo 3.0.1 Downloads + + + + + +

    + +

    + + +
    +

    NetLogo 3.0.1 Downloads

    +


    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Operating System    +
    + + includes Java
    (recommended) +
    +
    +
    + + does not
    include Java +
    +
    Windows +
    + + Download (35M) +
    +
    +
    + + Download (21M) +
    + +
    Mac OS X + +
    + + Download (21M) +
    +
    Other +
    + + Download (21M) +
    +
    + +

    + + +

    +


    + +

    Notes for Windows users:
    + +

      +
    • Certain anti-virus software may cause a long + pause (as much as two minutes) near the end of the download + process. +
    • We strongly recommend the "includes Java" download. This choice installs Java (version 1.4.2) for NetLogo's private use only. Other programs on your system are not affected. +
    • Even if you have downloaded NetLogo before, you should still choose "Includes Java". The included Java is not shared between different versions of NetLogo. +
    • You should only choose the "does not include Java" download if + you have already, separately and independently from any NetLogo + download, installed Java (version 1.4.2 or higher) on your system yourself. + +
    + + + +


    + +

    +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

    + + + + diff --git a/src/pages/downloads/archive/html/3.0.2/index.html b/src/pages/downloads/archive/html/3.0.2/index.html new file mode 100644 index 00000000..d86162ad --- /dev/null +++ b/src/pages/downloads/archive/html/3.0.2/index.html @@ -0,0 +1,142 @@ + + + + + +NetLogo 3.0.2 Downloads + + + + + +

    + +

    + + +
    +

    NetLogo 3.0.2 Downloads

    +


    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Operating System    +
    + + includes Java
    (recommended) +
    +
    +
    + + does not
    include Java +
    +
    Windows +
    + + Download (35M) +
    +
    +
    + + Download (21M) +
    + +
    Mac OS X + +
    + + Download (21M) +
    +
    Other +
    + + Download (21M) +
    +
    + +

    + + +

    +


    + +

    Notes for Windows users:
    + +

      +
    • Certain anti-virus software may cause a long + pause (as much as two minutes) near the end of the download + process. +
    • We strongly recommend the "includes Java" download. This choice installs Java (version 1.4.2) for NetLogo's private use only. Other programs on your system are not affected. +
    • Even if you have downloaded NetLogo before, you should still choose "Includes Java". The included Java is not shared between different versions of NetLogo. +
    • You should only choose the "does not include Java" download if + you have already, separately and independently from any NetLogo + download, installed Java (version 1.4.2 or higher) on your system yourself. + +
    + + + +


    + +

    +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

    + + + + diff --git a/src/pages/downloads/archive/html/3.0/index.html b/src/pages/downloads/archive/html/3.0/index.html new file mode 100644 index 00000000..8b6161ca --- /dev/null +++ b/src/pages/downloads/archive/html/3.0/index.html @@ -0,0 +1,142 @@ + + + + + +NetLogo 3.0.2 Downloads + + + + + +

    + +

    + + +
    +

    NetLogo 3.0.2 Downloads

    +


    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Operating System    +
    + + includes Java
    (recommended) +
    +
    +
    + + does not
    include Java +
    +
    Windows +
    + + Download (35M) +
    +
    +
    + + Download (21M) +
    + +
    Mac OS X + +
    + + Download (21M) +
    +
    Other +
    + + Download (21M) +
    +
    + +

    + + +

    +


    + +

    Notes for Windows users:
    + +

      +
    • Certain anti-virus software may cause a long + pause (as much as two minutes) near the end of the download + process. +
    • We strongly recommend the "includes Java" download. This choice installs Java (version 1.4.2) for NetLogo's private use only. Other programs on your system are not affected. +
    • Even if you have downloaded NetLogo before, you should still choose "Includes Java". The included Java is not shared between different versions of NetLogo. +
    • You should only choose the "does not include Java" download if + you have already, separately and independently from any NetLogo + download, installed Java (version 1.4.2 or higher) on your system yourself. + +
    + + + +


    + +

    +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

    + + + + diff --git a/src/pages/downloads/archive/html/3.1.0/index.html b/src/pages/downloads/archive/html/3.1.0/index.html new file mode 100644 index 00000000..535c1178 --- /dev/null +++ b/src/pages/downloads/archive/html/3.1.0/index.html @@ -0,0 +1,143 @@ + + + + + +NetLogo 3.1 Downloads + + + + + +

    + +

    + + +
    +

    NetLogo 3.1 Downloads

    +

    April 14, 2006

    +


    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Operating System    +
    + + includes Java
    (recommended) +
    +
    +
    + + does not
    include Java +
    +
    Windows +
    + + Download (48M) +
    +
    +
    + + Download (25M) +
    + +
    Mac OS X + +
    + + Download (25M) +
    +
    Other +
    + + Download (24M) +
    +
    + +

    + + +

    +


    + +

    Notes for Windows users:
    + +

      +
    • Certain anti-virus software may cause a long + pause (as much as two minutes) near the end of the download + process. +
    • We strongly recommend the "includes Java" download. This choice installs Java (version 1.5.0) for NetLogo's private use only. Other programs on your system are not affected. +
    • Even if you have downloaded NetLogo before, you should still choose "Includes Java". The included Java is not shared between different versions of NetLogo. +
    • You should only choose the "does not include Java" download if + you have already, separately and independently from any NetLogo + download, installed Java (version 1.4.2 or higher, preferably 1.5.0 or higher) on your system yourself. + +
    + + + +


    + +

    +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

    + + + + diff --git a/src/pages/downloads/archive/html/3.1.1/index.html b/src/pages/downloads/archive/html/3.1.1/index.html new file mode 100644 index 00000000..8cdb34fe --- /dev/null +++ b/src/pages/downloads/archive/html/3.1.1/index.html @@ -0,0 +1,143 @@ + + + + + +NetLogo 3.1.1 Downloads + + + + + +

    + +

    + + +
    +

    NetLogo 3.1.1 Downloads

    +

    June 16, 2006

    +


    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Operating System    +
    + + includes Java
    (recommended) +
    +
    +
    + + does not
    include Java +
    +
    Windows +
    + + Download (48M) +
    +
    +
    + + Download (25M) +
    + +
    Mac OS X + +
    + + Download (25M) +
    +
    Other +
    + + Download (24M) +
    +
    + +

    + + +

    +


    + +

    Notes for Windows users:
    + +

      +
    • Certain anti-virus software may cause a long + pause (as much as two minutes) near the end of the download + process. +
    • We strongly recommend the "includes Java" download. This choice installs Java (version 1.5.0) for NetLogo's private use only. Other programs on your system are not affected. +
    • Even if you have downloaded NetLogo before, you should still choose "Includes Java". The included Java is not shared between different versions of NetLogo. +
    • You should only choose the "does not include Java" download if + you have already, separately and independently from any NetLogo + download, installed Java (version 1.4.2 or higher, preferably 1.5.0 or higher) on your system yourself. + +
    + + + +


    + +

    +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

    + + + + diff --git a/src/pages/downloads/archive/html/3.1.2/index.html b/src/pages/downloads/archive/html/3.1.2/index.html new file mode 100644 index 00000000..69c78a4e --- /dev/null +++ b/src/pages/downloads/archive/html/3.1.2/index.html @@ -0,0 +1,143 @@ + + + + + +NetLogo 3.1.2 Downloads + + + + + +

    + +

    + + +
    +

    NetLogo 3.1.2 Downloads

    +

    August 9, 2006

    +


    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Operating System    +
    + + includes Java
    (recommended) +
    +
    +
    + + does not
    include Java +
    +
    Windows +
    + + Download (48M) +
    +
    +
    + + Download (25M) +
    + +
    Mac OS X + +
    + + Download (25M) +
    +
    Other +
    + + Download (24M) +
    +
    + +

    + + +

    +


    + +

    Notes for Windows users:
    + +

      +
    • Certain anti-virus software may cause a long + pause (as much as two minutes) near the end of the download + process. +
    • We strongly recommend the "includes Java" download. This choice installs Java (version 1.5.0) for NetLogo's private use only. Other programs on your system are not affected. +
    • Even if you have downloaded NetLogo before, you should still choose "Includes Java". The included Java is not shared between different versions of NetLogo. +
    • You should only choose the "does not include Java" download if + you have already, separately and independently from any NetLogo + download, installed Java (version 1.4.2 or higher, preferably 1.5.0 or higher) on your system yourself. + +
    + + + +


    + +

    +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

    + + + + diff --git a/src/pages/downloads/archive/html/3.1.3/index.html b/src/pages/downloads/archive/html/3.1.3/index.html new file mode 100644 index 00000000..3309fb63 --- /dev/null +++ b/src/pages/downloads/archive/html/3.1.3/index.html @@ -0,0 +1,143 @@ + + + + + +NetLogo 3.1.3 Downloads + + + + + +

    + +

    + + +
    +

    NetLogo 3.1.3 Downloads

    +

    September 20, 2006

    +


    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Operating System    +
    + + includes Java
    (recommended) +
    +
    +
    + + does not
    include Java +
    +
    Windows +
    + + Download (48M) +
    +
    +
    + + Download (25M) +
    + +
    Mac OS X + +
    + + Download (25M) +
    +
    Other +
    + + Download (24M) +
    +
    + +

    + + +

    +


    + +

    Notes for Windows users:
    + +

      +
    • Certain anti-virus software may cause a long + pause (as much as two minutes) near the end of the download + process. +
    • We strongly recommend the "includes Java" download. This choice installs Java (version 1.5.0) for NetLogo's private use only. Other programs on your system are not affected. +
    • Even if you have downloaded NetLogo before, you should still choose "Includes Java". The included Java is not shared between different versions of NetLogo. +
    • You should only choose the "does not include Java" download if + you have already, separately and independently from any NetLogo + download, installed Java (version 1.4.2 or higher, preferably 1.5.0 or higher) on your system yourself. + +
    + + + +


    + +

    +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

    + + + + diff --git a/src/pages/downloads/archive/html/3.1.4/index.html b/src/pages/downloads/archive/html/3.1.4/index.html new file mode 100644 index 00000000..ee5e676c --- /dev/null +++ b/src/pages/downloads/archive/html/3.1.4/index.html @@ -0,0 +1,143 @@ + + + + + +NetLogo 3.1.4 Downloads + + + + + +

    + +

    + + +
    +

    NetLogo 3.1.4 Downloads

    +

    February 16, 2007

    +


    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Operating System    +
    + + includes Java
    (recommended) +
    +
    +
    + + does not
    include Java +
    +
    Windows +
    + + Download (51M) +
    +
    +
    + + Download (26M) +
    + +
    Mac OS X + +
    + + Download (25M) +
    +
    Other +
    + + Download (24M) +
    +
    + +

    + + +

    +


    + +

    Notes for Windows users:
    + +

      +
    • Certain anti-virus software may cause a long + pause (as much as two minutes) near the end of the download + process. +
    • We strongly recommend the "includes Java" download. This choice installs Java (version 1.5.0) for NetLogo's private use only. Other programs on your system are not affected. +
    • Even if you have downloaded NetLogo before, you should still choose "Includes Java". The included Java is not shared between different versions of NetLogo. +
    • You should only choose the "does not include Java" download if + you have already, separately and independently from any NetLogo + download, installed Java (version 1.4.2 or higher, preferably 1.5.0 or higher) on your system yourself. + +
    + + + +


    + +

    +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

    + + + + diff --git a/src/pages/downloads/archive/html/3.1.5/index.html b/src/pages/downloads/archive/html/3.1.5/index.html new file mode 100644 index 00000000..197f5839 --- /dev/null +++ b/src/pages/downloads/archive/html/3.1.5/index.html @@ -0,0 +1,143 @@ + + + + + +NetLogo 3.1.5 Downloads + + + + + +

    + +

    + + +
    +

    NetLogo 3.1.5 Downloads

    +

    December 5, 2007

    +


    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Operating System    +
    + + includes Java
    (recommended) +
    +
    +
    + + does not
    include Java +
    +
    Windows +
    + + Download (51M) +
    +
    +
    + + Download (26M) +
    + +
    Mac OS X + +
    + + Download (25M) +
    +
    Other +
    + + Download (24M) +
    +
    + +

    + + +

    +


    + +

    Notes for Windows users:
    + +

      +
    • Certain anti-virus software may cause a long + pause (as much as two minutes) near the end of the download + process. +
    • We strongly recommend the "includes Java" download. This choice installs Java (version 1.5.0) for NetLogo's private use only. Other programs on your system are not affected. +
    • Even if you have downloaded NetLogo before, you should still choose "Includes Java". The included Java is not shared between different versions of NetLogo. +
    • You should only choose the "does not include Java" download if + you have already, separately and independently from any NetLogo + download, installed Java (version 1.4.2 or higher, preferably 1.5.0 or higher) on your system yourself. + +
    + + + +


    + +

    +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

    + + + + diff --git a/src/pages/downloads/archive/html/3.1/index.html b/src/pages/downloads/archive/html/3.1/index.html new file mode 100644 index 00000000..b8c4a7c8 --- /dev/null +++ b/src/pages/downloads/archive/html/3.1/index.html @@ -0,0 +1,143 @@ + + + + + +NetLogo 3.1.5 Downloads + + + + + +

    + +

    + + +
    +

    NetLogo 3.1.5 Downloads

    +

    December 5, 2007

    +


    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Operating System    +
    + + includes Java
    (recommended) +
    +
    +
    + + does not
    include Java +
    +
    Windows +
    + + Download (51M) +
    +
    +
    + + Download (26M) +
    + +
    Mac OS X + +
    + + Download (25M) +
    +
    Other +
    + + Download (24M) +
    +
    + +

    + + +

    +


    + +

    Notes for Windows users:
    + +

      +
    • Certain anti-virus software may cause a long + pause (as much as two minutes) near the end of the download + process. +
    • We strongly recommend the "includes Java" download. This choice installs Java (version 1.5.0) for NetLogo's private use only. Other programs on your system are not affected. +
    • Even if you have downloaded NetLogo before, you should still choose "Includes Java". The included Java is not shared between different versions of NetLogo. +
    • You should only choose the "does not include Java" download if + you have already, separately and independently from any NetLogo + download, installed Java (version 1.4.2 or higher, preferably 1.5.0 or higher) on your system yourself. + +
    + + + +


    + +

    +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

    + + + + diff --git a/src/pages/downloads/archive/html/4.0.0/index.html b/src/pages/downloads/archive/html/4.0.0/index.html new file mode 100644 index 00000000..7b7e6b1e --- /dev/null +++ b/src/pages/downloads/archive/html/4.0.0/index.html @@ -0,0 +1,117 @@ + + + + + +NetLogo 4.0 Downloads + + + + + +

    + +

    + + +
    +

    NetLogo 4.0 Downloads

    +

    September 25, 2007

    +


    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Windows + +
    + + Download + (58M)
    +
    Mac OS X + +
    + + Download + (31M)
    +
    Other +
    + + Download + (30M)
    +
    + +

    + + +

    +


    + +

    Notes for Windows users:
    + +

      +
    • Certain anti-virus software may cause a long + pause (as much as a minute or longer) near the end + of the download + process. +
    • Our installer includes Java (version 1.5.0) for NetLogo’s private use only. + Other programs on your computer are not affected. +
    • Want to run NetLogo using a Java VM you have + already installed yourself, instead of one bundled + with NetLogo? Click here + for cautions, technical information, and instructions. +
    + + + +


    + +

    +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

    + + + + diff --git a/src/pages/downloads/archive/html/4.0.0/windows.html b/src/pages/downloads/archive/html/4.0.0/windows.html new file mode 100644 index 00000000..727ca401 --- /dev/null +++ b/src/pages/downloads/archive/html/4.0.0/windows.html @@ -0,0 +1,161 @@ + + + + + + NetLogo 4.0 for Windows without bundled Java + + + +

    + +

    + + + + +
    +

    NetLogo 4.0
    for Windows

    +

    (without bundled Java)

    +

    September 25, 2007

    +

    +
    +
    + +

    + + + + +
    +

    + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

    + +

    There are two reasons you might want to use the download on this page instead:

    + +
      +
    1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
    2. + +
    3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
    4. +
    + +

    + If you think the download on this page might be appropriate for you, please read the following detailed + technical information. +

    + +

    + Even if you already have Java installed on your computer, it probably will not work with + NetLogo. +

    + +

    + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Sun does not install this option. It is only included in + Sun’s Java Development Kit (JDK). +

    + +

    If you are not a Java developer, then you probably have the JRE, not the JDK.

    + +

    Therefore, if you want to run NetLogo with your own Java VM, you have two options:

    + +
      +
    1. Make sure that you have the full JDK for the Java you want to use, not just the JRE.
    2. + +
    3. Or, you can edit a configuration file in order to make NetLogo work with the JRE.
    4. +
    + +

    + We don’t recommend option 2, because NetLogo runs noticeably slower without the “server” + option. +

    + +

    + If you choose option 2 anyway, here’s what to do. You have to tell NetLogo not to try to use the + “server” VM option. First, install NetLogo using the download on this page. Then, open NetLogo + 4.0.lax in a text editor such as Notepad, located in the directory where you installed NetLogo (by default + c:/Program Files/NetLogo 4.0). You need to remove the server option from the additional java options. So + change this section: +

    + +
    +#   LAX.NL.JAVA.OPTION.ADDITIONAL
    +#   -----------------------------
    +#   don't load native libs from user dirs, only ours, also run server not client VM
    +
    +lax.nl.java.option.additional=-Djava.ext.dirs= -server -Dsun.java2d.noddraw=true
    +
    + +

    To look like this:

    + +
    +#   LAX.NL.JAVA.OPTION.ADDITIONAL
    +#   -----------------------------
    +#   don't load native libs from user dirs, only ours, also run server not client VM
    +
    +lax.nl.java.option.additional=-Djava.ext.dirs= -Dsun.java2d.noddraw=true
    +
    + +

    Again, remember that with this approach, performance is impaired.

    + +

    +
    + + + + + + + + + + +
    + + Windows +
    + Download + (32M) +
    +
    + +

    +
    + +

    Notes:

    + +
      +
    • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
    • +
    + +

    + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/4.0.1/index.html b/src/pages/downloads/archive/html/4.0.1/index.html new file mode 100644 index 00000000..6849bc4f --- /dev/null +++ b/src/pages/downloads/archive/html/4.0.1/index.html @@ -0,0 +1,117 @@ + + + + + +NetLogo 4.0.1 Downloads + + + + + +

    + +

    + + +
    +

    NetLogo 4.0.1 Downloads

    +

    October 31, 2007

    +


    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Windows + +
    + + Download + (58M)
    +
    Mac OS X + +
    + + Download + (31M)
    +
    Other +
    + + Download + (30M)
    +
    + +

    + + +

    +


    + +

    Notes for Windows users:
    + +

      +
    • Certain anti-virus software may cause a long + pause (as much as a minute or longer) near the end + of the download + process. +
    • Our installer includes Java (version 1.5.0) for NetLogo’s private use only. + Other programs on your computer are not affected. +
    • Want to run NetLogo using a Java VM you have + already installed yourself, instead of one bundled + with NetLogo? Click here + for cautions, technical information, and instructions. +
    + + + +


    + +

    +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

    + + + + diff --git a/src/pages/downloads/archive/html/4.0.1/windows.html b/src/pages/downloads/archive/html/4.0.1/windows.html new file mode 100644 index 00000000..7751b457 --- /dev/null +++ b/src/pages/downloads/archive/html/4.0.1/windows.html @@ -0,0 +1,161 @@ + + + + + + NetLogo 4.0.1 for Windows without bundled Java + + + +

    + +

    + + + + +
    +

    NetLogo 4.0.1
    for Windows

    +

    (without bundled Java)

    +

    October 31, 2007

    +

    +
    +
    + +

    + + + + +
    +

    + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

    + +

    There are two reasons you might want to use the download on this page instead:

    + +
      +
    1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
    2. + +
    3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
    4. +
    + +

    + If you think the download on this page might be appropriate for you, please read the following detailed + technical information. +

    + +

    + Even if you already have Java installed on your computer, it probably will not work with + NetLogo. +

    + +

    + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Sun does not install this option. It is only included in + Sun’s Java Development Kit (JDK). +

    + +

    If you are not a Java developer, then you probably have the JRE, not the JDK.

    + +

    Therefore, if you want to run NetLogo with your own Java VM, you have two options:

    + +
      +
    1. Make sure that you have the full JDK for the Java you want to use, not just the JRE.
    2. + +
    3. Or, you can edit a configuration file in order to make NetLogo work with the JRE.
    4. +
    + +

    + We don’t recommend option 2, because NetLogo runs noticeably slower without the “server” + option. +

    + +

    + If you choose option 2 anyway, here’s what to do. You have to tell NetLogo not to try to use the + “server” VM option. First, install NetLogo using the download on this page. Then, open NetLogo + 4.0.1.lax, located in the directory where you installed NetLogo (by default c:/Program Files/NetLogo 4.0.1), + in a text editor such as Notepad. You need to remove the -server option from the additional java + options. So change this section: +

    + +
    +#   LAX.NL.JAVA.OPTION.ADDITIONAL
    +#   -----------------------------
    +#   don't load native libs from user dirs, only ours, also run server not client VM
    +
    +lax.nl.java.option.additional=-Djava.ext.dirs= -server -Dsun.java2d.noddraw=true
    +
    + +

    To look like this:

    + +
    +#   LAX.NL.JAVA.OPTION.ADDITIONAL
    +#   -----------------------------
    +#   don't load native libs from user dirs, only ours, also run server not client VM
    +
    +lax.nl.java.option.additional=-Djava.ext.dirs= -Dsun.java2d.noddraw=true
    +
    + +

    Again, remember that with this approach, performance is impaired.

    + +

    +
    + + + + + + + + + + +
    + + Windows +
    + Download + (32M) +
    +
    + +

    +
    + +

    Notes:

    + +
      +
    • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
    • +
    + +

    + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/4.0.2/index.html b/src/pages/downloads/archive/html/4.0.2/index.html new file mode 100644 index 00000000..544e202a --- /dev/null +++ b/src/pages/downloads/archive/html/4.0.2/index.html @@ -0,0 +1,117 @@ + + + + + +NetLogo 4.0.2 Downloads + + + + + +

    + +

    + + +
    +

    NetLogo 4.0.2 Downloads

    +

    December 5, 2007

    +


    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Windows + +
    + + Download + (58M)
    +
    Mac OS X + +
    + + Download + (31M)
    +
    Other +
    + + Download + (30M)
    +
    + +

    + + +

    +


    + +

    Notes for Windows users:
    + +

      +
    • Certain anti-virus software may cause a long + pause (as much as a minute or longer) near the end + of the download + process. +
    • Our installer includes Java (version 1.5.0) for NetLogo’s private use only. + Other programs on your computer are not affected. +
    • Want to run NetLogo using a Java VM you have + already installed yourself, instead of one bundled + with NetLogo? Click here + for cautions, technical information, and instructions. +
    + + + +


    + +

    +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

    + + + + diff --git a/src/pages/downloads/archive/html/4.0.2/windows.html b/src/pages/downloads/archive/html/4.0.2/windows.html new file mode 100644 index 00000000..511aa059 --- /dev/null +++ b/src/pages/downloads/archive/html/4.0.2/windows.html @@ -0,0 +1,161 @@ + + + + + + NetLogo 4.0.2 for Windows without bundled Java + + + +

    + +

    + + + + +
    +

    NetLogo 4.0.2
    for Windows

    +

    (without bundled Java)

    +

    December 5, 2007

    +

    +
    +
    + +

    + + + + +
    +

    + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

    + +

    There are two reasons you might want to use the download on this page instead:

    + +
      +
    1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
    2. + +
    3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
    4. +
    + +

    + If you think the download on this page might be appropriate for you, please read the following detailed + technical information. +

    + +

    + Even if you already have Java installed on your computer, it probably will not work with + NetLogo. +

    + +

    + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Sun does not install this option. It is only included in + Sun’s Java Development Kit (JDK). +

    + +

    If you are not a Java developer, then you probably have the JRE, not the JDK.

    + +

    Therefore, if you want to run NetLogo with your own Java VM, you have two options:

    + +
      +
    1. Make sure that you have the full JDK for the Java you want to use, not just the JRE.
    2. + +
    3. Or, you can edit a configuration file in order to make NetLogo work with the JRE.
    4. +
    + +

    + We don’t recommend option 2, because NetLogo runs noticeably slower without the “server” + option. +

    + +

    + If you choose option 2 anyway, here’s what to do. You have to tell NetLogo not to try to use the + “server” VM option. First, install NetLogo using the download on this page. Then, open NetLogo + 4.0.2.lax, located in the directory where you installed NetLogo (by default c:/Program Files/NetLogo 4.0.2), + in a text editor such as Notepad. You need to remove the -server option from the additional java + options. So change this section: +

    + +
    +#   LAX.NL.JAVA.OPTION.ADDITIONAL
    +#   -----------------------------
    +#   don't load native libs from user dirs, only ours, also run server not client VM
    +
    +lax.nl.java.option.additional=-Djava.ext.dirs= -server -Dsun.java2d.noddraw=true
    +
    + +

    To look like this:

    + +
    +#   LAX.NL.JAVA.OPTION.ADDITIONAL
    +#   -----------------------------
    +#   don't load native libs from user dirs, only ours, also run server not client VM
    +
    +lax.nl.java.option.additional=-Djava.ext.dirs= -Dsun.java2d.noddraw=true
    +
    + +

    Again, remember that with this approach, performance is impaired.

    + +

    +
    + + + + + + + + + + +
    + + Windows +
    + Download + (32M) +
    +
    + +

    +
    + +

    Notes:

    + +
      +
    • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
    • +
    + +

    + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/4.0.3/index.html b/src/pages/downloads/archive/html/4.0.3/index.html new file mode 100644 index 00000000..2743b5d8 --- /dev/null +++ b/src/pages/downloads/archive/html/4.0.3/index.html @@ -0,0 +1,117 @@ + + + + + +NetLogo 4.0.3 Downloads + + + + + +

    + +

    + + +
    +

    NetLogo 4.0.3 Downloads

    +

    August 6, 2008

    +


    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Windows + +
    + + Download + (63M)
    +
    Mac OS X + +
    + + Download + (36M)
    +
    Other +
    + + Download + (35M)
    +
    + +

    + + +

    +


    + +

    Notes for Windows users:
    + +

      +
    • Certain anti-virus software may cause a long + pause (as much as a minute or longer) near the end + of the download + process. +
    • Our installer includes Java (version 1.5.0) for NetLogo’s private use only. + Other programs on your computer are not affected. +
    • Want to run NetLogo using a Java VM you have + already installed yourself, instead of one bundled + with NetLogo? Click here + for cautions, technical information, and instructions. +
    + + + +


    + +

    +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

    + + + + diff --git a/src/pages/downloads/archive/html/4.0.3/windows.html b/src/pages/downloads/archive/html/4.0.3/windows.html new file mode 100644 index 00000000..6316ccab --- /dev/null +++ b/src/pages/downloads/archive/html/4.0.3/windows.html @@ -0,0 +1,161 @@ + + + + + + NetLogo 4.0.3 for Windows without bundled Java + + + +

    + +

    + + + + +
    +

    NetLogo 4.0.3
    for Windows

    +

    (without bundled Java)

    +

    August 6, 2008

    +

    +
    +
    + +

    + + + + +
    +

    + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

    + +

    There are two reasons you might want to use the download on this page instead:

    + +
      +
    1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
    2. + +
    3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
    4. +
    + +

    + If you think the download on this page might be appropriate for you, please read the following detailed + technical information. +

    + +

    + Even if you already have Java installed on your computer, it probably will not work with + NetLogo. +

    + +

    + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Sun does not install this option. It is only included in + Sun’s Java Development Kit (JDK). +

    + +

    If you are not a Java developer, then you probably have the JRE, not the JDK.

    + +

    Therefore, if you want to run NetLogo with your own Java VM, you have two options:

    + +
      +
    1. Make sure that you have the full JDK for the Java you want to use, not just the JRE.
    2. + +
    3. Or, you can edit a configuration file in order to make NetLogo work with the JRE.
    4. +
    + +

    + We don’t recommend option 2, because NetLogo runs noticeably slower without the “server” + option. +

    + +

    + If you choose option 2 anyway, here’s what to do. You have to tell NetLogo not to try to use the + “server” VM option. First, install NetLogo using the download on this page. Then, open NetLogo + 4.0.3.lax, located in the directory where you installed NetLogo (by default c:/Program Files/NetLogo 4.0.3), + in a text editor such as Notepad. You need to remove the -server option from the additional java + options. So change this section: +

    + +
    +#   LAX.NL.JAVA.OPTION.ADDITIONAL
    +#   -----------------------------
    +#   don't load native libs from user dirs, only ours, also run server not client VM
    +
    +lax.nl.java.option.additional=-Djava.ext.dirs= -server -Dsun.java2d.noddraw=true
    +
    + +

    To look like this:

    + +
    +#   LAX.NL.JAVA.OPTION.ADDITIONAL
    +#   -----------------------------
    +#   don't load native libs from user dirs, only ours, also run server not client VM
    +
    +lax.nl.java.option.additional=-Djava.ext.dirs= -Dsun.java2d.noddraw=true
    +
    + +

    Again, remember that with this approach, performance is impaired.

    + +

    +
    + + + + + + + + + + +
    + + Windows +
    + Download + (37M) +
    +
    + +

    +
    + +

    Notes:

    + +
      +
    • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
    • +
    + +

    + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/4.0.4/index.html b/src/pages/downloads/archive/html/4.0.4/index.html new file mode 100644 index 00000000..5b398e80 --- /dev/null +++ b/src/pages/downloads/archive/html/4.0.4/index.html @@ -0,0 +1,117 @@ + + + + + +NetLogo 4.0.4 Downloads + + + + + +

    + +

    + + +
    +

    NetLogo 4.0.4 Downloads

    +

    November 24, 2008

    +


    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Windows + +
    + + Download + (63M)
    +
    Mac OS X + +
    + + Download + (36M)
    +
    Other +
    + + Download + (35M)
    +
    + +

    + + +

    +


    + +

    Notes for Windows users:
    + +

      +
    • Certain anti-virus software may cause a long + pause (as much as a minute or longer) near the end + of the download + process. +
    • Our installer includes Java (version 1.5.0) for NetLogo’s private use only. + Other programs on your computer are not affected. +
    • Want to run NetLogo using a Java VM you have + already installed yourself, instead of one bundled + with NetLogo? Click here + for cautions, technical information, and instructions. +
    + + + +


    + +

    +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

    + + + + diff --git a/src/pages/downloads/archive/html/4.0.4/windows.html b/src/pages/downloads/archive/html/4.0.4/windows.html new file mode 100644 index 00000000..74cef75d --- /dev/null +++ b/src/pages/downloads/archive/html/4.0.4/windows.html @@ -0,0 +1,161 @@ + + + + + + NetLogo 4.0.4 for Windows without bundled Java + + + +

    + +

    + + + + +
    +

    NetLogo 4.0.4
    for Windows

    +

    (without bundled Java)

    +

    November 24, 2008

    +

    +
    +
    + +

    + + + + +
    +

    + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

    + +

    There are two reasons you might want to use the download on this page instead:

    + +
      +
    1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
    2. + +
    3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
    4. +
    + +

    + If you think the download on this page might be appropriate for you, please read the following detailed + technical information. +

    + +

    + Even if you already have Java installed on your computer, it probably will not work with + NetLogo. +

    + +

    + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Sun does not install this option. It is only included in + Sun’s Java Development Kit (JDK). +

    + +

    If you are not a Java developer, then you probably have the JRE, not the JDK.

    + +

    Therefore, if you want to run NetLogo with your own Java VM, you have two options:

    + +
      +
    1. Make sure that you have the full JDK for the Java you want to use, not just the JRE.
    2. + +
    3. Or, you can edit a configuration file in order to make NetLogo work with the JRE.
    4. +
    + +

    + We don’t recommend option 2, because NetLogo runs noticeably slower without the “server” + option. +

    + +

    + If you choose option 2 anyway, here’s what to do. You have to tell NetLogo not to try to use the + “server” VM option. First, install NetLogo using the download on this page. Then, open NetLogo + 4.0.4.lax, located in the directory where you installed NetLogo (by default c:/Program Files/NetLogo 4.0.4), + in a text editor such as Notepad. You need to remove the -server option from the additional java + options. So change this section: +

    + +
    +#   LAX.NL.JAVA.OPTION.ADDITIONAL
    +#   -----------------------------
    +#   don't load native libs from user dirs, only ours, also run server not client VM
    +
    +lax.nl.java.option.additional=-Djava.ext.dirs= -server -Dsun.java2d.noddraw=true
    +
    + +

    To look like this:

    + +
    +#   LAX.NL.JAVA.OPTION.ADDITIONAL
    +#   -----------------------------
    +#   don't load native libs from user dirs, only ours, also run server not client VM
    +
    +lax.nl.java.option.additional=-Djava.ext.dirs= -Dsun.java2d.noddraw=true
    +
    + +

    Again, remember that with this approach, performance is impaired.

    + +

    +
    + + + + + + + + + + +
    + + Windows +
    + Download + (37M) +
    +
    + +

    +
    + +

    Notes:

    + +
      +
    • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
    • +
    + +

    + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/4.0.5/index.html b/src/pages/downloads/archive/html/4.0.5/index.html new file mode 100644 index 00000000..26d3fd3e --- /dev/null +++ b/src/pages/downloads/archive/html/4.0.5/index.html @@ -0,0 +1,117 @@ + + + + + +NetLogo 4.0.5 Downloads + + + + + +

    + +

    + + +
    +

    NetLogo 4.0.5 Downloads

    +

    December 14, 2009

    +


    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Windows + +
    + + Download + (63M)
    +
    Mac OS X + +
    + + Download + (37M)
    +
    Other +
    + + Download + (35M)
    +
    + +

    + + +

    +


    + +

    Notes for Windows users:
    + +

      +
    • Certain anti-virus software may cause a long + pause (as much as a minute or longer) near the end + of the download + process. +
    • Our installer includes Java (version 1.5.0) for NetLogo’s private use only. + Other programs on your computer are not affected. +
    • Want to run NetLogo using a Java VM you have + already installed yourself, instead of one bundled + with NetLogo? Click here + for cautions, technical information, and instructions. +
    + + + +


    + +

    +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

    + + + + diff --git a/src/pages/downloads/archive/html/4.0.5/windows.html b/src/pages/downloads/archive/html/4.0.5/windows.html new file mode 100644 index 00000000..942fff97 --- /dev/null +++ b/src/pages/downloads/archive/html/4.0.5/windows.html @@ -0,0 +1,161 @@ + + + + + + NetLogo 4.0.5 for Windows without bundled Java + + + +

    + +

    + + + + +
    +

    NetLogo 4.0.5
    for Windows

    +

    (without bundled Java)

    +

    December 14, 2009

    +

    +
    +
    + +

    + + + + +
    +

    + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

    + +

    There are two reasons you might want to use the download on this page instead:

    + +
      +
    1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
    2. + +
    3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
    4. +
    + +

    + If you think the download on this page might be appropriate for you, please read the following detailed + technical information. +

    + +

    + Even if you already have Java installed on your computer, it probably will not work with + NetLogo. +

    + +

    + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Sun does not install this option. It is only included in + Sun’s Java Development Kit (JDK). +

    + +

    If you are not a Java developer, then you probably have the JRE, not the JDK.

    + +

    Therefore, if you want to run NetLogo with your own Java VM, you have two options:

    + +
      +
    1. Make sure that you have the full JDK for the Java you want to use, not just the JRE.
    2. + +
    3. Or, you can edit a configuration file in order to make NetLogo work with the JRE.
    4. +
    + +

    + We don’t recommend option 2, because NetLogo runs noticeably slower without the “server” + option. +

    + +

    + If you choose option 2 anyway, here’s what to do. You have to tell NetLogo not to try to use the + “server” VM option. First, install NetLogo using the download on this page. Then, open NetLogo + 4.0.5.lax, located in the directory where you installed NetLogo (by default c:/Program Files/NetLogo 4.0.5), + in a text editor such as Notepad. You need to remove the -server option from the additional java + options. So change this section: +

    + +
    +#   LAX.NL.JAVA.OPTION.ADDITIONAL
    +#   -----------------------------
    +#   don't load native libs from user dirs, only ours, also run server not client VM
    +
    +lax.nl.java.option.additional=-Djava.ext.dirs= -server -Dsun.java2d.noddraw=true
    +
    + +

    To look like this:

    + +
    +#   LAX.NL.JAVA.OPTION.ADDITIONAL
    +#   -----------------------------
    +#   don't load native libs from user dirs, only ours, also run server not client VM
    +
    +lax.nl.java.option.additional=-Djava.ext.dirs= -Dsun.java2d.noddraw=true
    +
    + +

    Again, remember that with this approach, performance is impaired.

    + +

    +
    + + + + + + + + + + +
    + + Windows +
    + Download + (37M) +
    +
    + +

    +
    + +

    Notes:

    + +
      +
    • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
    • +
    + +

    + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/4.0/index.html b/src/pages/downloads/archive/html/4.0/index.html new file mode 100644 index 00000000..14a6d9a8 --- /dev/null +++ b/src/pages/downloads/archive/html/4.0/index.html @@ -0,0 +1,117 @@ + + + + + +NetLogo 4.0.5 Downloads + + + + + +

    + +

    + + +
    +

    NetLogo 4.0.5 Downloads

    +

    December 14, 2009

    +


    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Windows + +
    + + Download + (63M)
    +
    Mac OS X + +
    + + Download + (37M)
    +
    Other +
    + + Download + (35M)
    +
    + +

    + + +

    +


    + +

    Notes for Windows users:
    + +

      +
    • Certain anti-virus software may cause a long + pause (as much as a minute or longer) near the end + of the download + process. +
    • Our installer includes Java (version 1.5.0) for NetLogo’s private use only. + Other programs on your computer are not affected. +
    • Want to run NetLogo using a Java VM you have + already installed yourself, instead of one bundled + with NetLogo? Click here + for cautions, technical information, and instructions. +
    + + + +


    + +

    +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

    + + + + diff --git a/src/pages/downloads/archive/html/4.0/windows.html b/src/pages/downloads/archive/html/4.0/windows.html new file mode 100644 index 00000000..017e4db9 --- /dev/null +++ b/src/pages/downloads/archive/html/4.0/windows.html @@ -0,0 +1,161 @@ + + + + + + NetLogo 4.0.5 for Windows without bundled Java + + + +

    + +

    + + + + +
    +

    NetLogo 4.0.5
    for Windows

    +

    (without bundled Java)

    +

    December 14, 2009

    +

    +
    +
    + +

    + + + + +
    +

    + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

    + +

    There are two reasons you might want to use the download on this page instead:

    + +
      +
    1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
    2. + +
    3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
    4. +
    + +

    + If you think the download on this page might be appropriate for you, please read the following detailed + technical information. +

    + +

    + Even if you already have Java installed on your computer, it probably will not work with + NetLogo. +

    + +

    + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Sun does not install this option. It is only included in + Sun’s Java Development Kit (JDK). +

    + +

    If you are not a Java developer, then you probably have the JRE, not the JDK.

    + +

    Therefore, if you want to run NetLogo with your own Java VM, you have two options:

    + +
      +
    1. Make sure that you have the full JDK for the Java you want to use, not just the JRE.
    2. + +
    3. Or, you can edit a configuration file in order to make NetLogo work with the JRE.
    4. +
    + +

    + We don’t recommend option 2, because NetLogo runs noticeably slower without the “server” + option. +

    + +

    + If you choose option 2 anyway, here’s what to do. You have to tell NetLogo not to try to use the + “server” VM option. First, install NetLogo using the download on this page. Then, open NetLogo + 4.0.5.lax, located in the directory where you installed NetLogo (by default c:/Program Files/NetLogo 4.0.5), + in a text editor such as Notepad. You need to remove the -server option from the additional java + options. So change this section: +

    + +
    +#   LAX.NL.JAVA.OPTION.ADDITIONAL
    +#   -----------------------------
    +#   don't load native libs from user dirs, only ours, also run server not client VM
    +
    +lax.nl.java.option.additional=-Djava.ext.dirs= -server -Dsun.java2d.noddraw=true
    +
    + +

    To look like this:

    + +
    +#   LAX.NL.JAVA.OPTION.ADDITIONAL
    +#   -----------------------------
    +#   don't load native libs from user dirs, only ours, also run server not client VM
    +
    +lax.nl.java.option.additional=-Djava.ext.dirs= -Dsun.java2d.noddraw=true
    +
    + +

    Again, remember that with this approach, performance is impaired.

    + +

    +
    + + + + + + + + + + +
    + + Windows +
    + Download + (37M) +
    +
    + +

    +
    + +

    Notes:

    + +
      +
    • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
    • +
    + +

    + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/4.1.0/index.html b/src/pages/downloads/archive/html/4.1.0/index.html new file mode 100644 index 00000000..a2deca00 --- /dev/null +++ b/src/pages/downloads/archive/html/4.1.0/index.html @@ -0,0 +1,132 @@ + + + + + +NetLogo 4.1 Downloads + + + + + + + + + +

    + +

    + + +
    +

    NetLogo 4.1 Downloads

    +

    December 20, 2009

    +


    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Windows + +
    + + Download + (62M)
    +
    Mac OS X + +
    + + Download + (43M)
    +
    Other +
    + + Download + (41M)
    +
    + + + +
    +


    + +

    sign up for mailing lists

    + +

    + +Donate
    + +

    + + +

    +


    + +

    Notes for Windows users:
    + +

      +
    • Certain anti-virus software may cause a long + pause (as much as a minute or longer) near the end + of the download + process. +
    • Our installer includes Java 6 for NetLogo’s private use only. + Other programs on your computer are not affected. +
    • Want to run NetLogo using a Java VM you have + already installed yourself, instead of one bundled + with NetLogo? Click here + for cautions, technical information, and instructions. +
    + + + +


    + +

    +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

    + + + + diff --git a/src/pages/downloads/archive/html/4.1.0/windows.html b/src/pages/downloads/archive/html/4.1.0/windows.html new file mode 100644 index 00000000..a3bed22d --- /dev/null +++ b/src/pages/downloads/archive/html/4.1.0/windows.html @@ -0,0 +1,122 @@ + + + + + + NetLogo 4.1 for Windows without bundled Java + + + +

    + +

    + + + + +
    +

    NetLogo 4.1
    for Windows

    +

    (without bundled Java)

    +

    December 20, 2009

    +

    +
    +
    + +

    + + + + +
    + + +

    + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

    + +

    There are two reasons you might want to use the download on this page instead:

    + +
      +
    1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
    2. + +
    3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
    4. +
    + +

    + If you think the download on this page might be appropriate for you, please read the following technical + information. +

    + +

    + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

    + +

    + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Sun does not install this option. It is only included in + Sun’s Java Development Kit (JDK). +

    + +

    + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models will run substantially slower. +

    + +

    +
    + + + + + + + + + + +
    + + Windows +
    + Download + (43M) +
    +
    + +

    +
    + +

    Notes:

    + +
      +
    • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
    • +
    + +

    + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/4.1.1/index.html b/src/pages/downloads/archive/html/4.1.1/index.html new file mode 100644 index 00000000..82bcde0a --- /dev/null +++ b/src/pages/downloads/archive/html/4.1.1/index.html @@ -0,0 +1,120 @@ + + + + + +NetLogo 4.1.1 Downloads + + + + + + +

    + +

    + + +
    +

    NetLogo 4.1.1 Downloads

    +

    August 4, 2010

    +


    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Windows + +
    + + Download + (62M)
    +
    Mac OS X + +
    + + Download + (43M)
    +
    Other +
    + + Download + (41M)
    +
    + +


    Donate
    + +

    + + +

    +


    + +

    Notes for Windows users:
    + +

      +
    • Certain anti-virus software may cause a long + pause (as much as a minute or longer) near the end + of the download + process. +
    • Our installer includes Java 6 for NetLogo’s private use only. + Other programs on your computer are not affected. +
    • Want to run NetLogo using a Java VM you have + already installed yourself, instead of one bundled + with NetLogo? Click here + for cautions, technical information, and instructions. +
    + + + +


    + +

    +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

    + + + + diff --git a/src/pages/downloads/archive/html/4.1.1/windows.html b/src/pages/downloads/archive/html/4.1.1/windows.html new file mode 100644 index 00000000..dd43f850 --- /dev/null +++ b/src/pages/downloads/archive/html/4.1.1/windows.html @@ -0,0 +1,122 @@ + + + + + + NetLogo 4.1.1 for Windows without bundled Java + + + +

    + +

    + + + + +
    +

    NetLogo 4.1.1
    for Windows

    +

    (without bundled Java)

    +

    August 4, 2010

    +

    +
    +
    + +

    + + + + +
    + + +

    + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

    + +

    There are two reasons you might want to use the download on this page instead:

    + +
      +
    1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
    2. + +
    3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
    4. +
    + +

    + If you think the download on this page might be appropriate for you, please read the following technical + information. +

    + +

    + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

    + +

    + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Sun does not install this option. It is only included in + Sun’s Java Development Kit (JDK). +

    + +

    + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models will run substantially slower. +

    + +

    +
    + + + + + + + + + + +
    + + Windows +
    + Download + (43M) +
    +
    + +

    +
    + +

    Notes:

    + +
      +
    • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
    • +
    + +

    + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/4.1.2/index.html b/src/pages/downloads/archive/html/4.1.2/index.html new file mode 100644 index 00000000..4151a3c5 --- /dev/null +++ b/src/pages/downloads/archive/html/4.1.2/index.html @@ -0,0 +1,120 @@ + + + + + +NetLogo 4.1.2 Downloads + + + + + + +

    + +

    + + +
    +

    NetLogo 4.1.2 Downloads

    +

    December 6, 2010

    +


    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Windows + +
    + + Download + (63M)
    +
    Mac OS X + +
    + + Download + (43M)
    +
    Other +
    + + Download + (41M)
    +
    + +


    Donate
    + +

    + + +

    +


    + +

    Notes for Windows users:
    + +

      +
    • Certain anti-virus software may cause a long + pause (as much as a minute or longer) near the end + of the download + process. +
    • Our installer includes Java 6 for NetLogo’s private use only. + Other programs on your computer are not affected. +
    • Want to run NetLogo using a Java VM you have + already installed yourself, instead of one bundled + with NetLogo? Click here + for cautions, technical information, and instructions. +
    + + + +


    + +

    +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

    + + + + diff --git a/src/pages/downloads/archive/html/4.1.2/windows.html b/src/pages/downloads/archive/html/4.1.2/windows.html new file mode 100644 index 00000000..7cecbf35 --- /dev/null +++ b/src/pages/downloads/archive/html/4.1.2/windows.html @@ -0,0 +1,122 @@ + + + + + + NetLogo 4.1.2 for Windows without bundled Java + + + +

    + +

    + + + + +
    +

    NetLogo 4.1.2
    for Windows

    +

    (without bundled Java)

    +

    December 6, 2010

    +

    +
    +
    + +

    + + + + +
    + + +

    + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

    + +

    There are two reasons you might want to use the download on this page instead:

    + +
      +
    1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
    2. + +
    3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
    4. +
    + +

    + If you think the download on this page might be appropriate for you, please read the following technical + information. +

    + +

    + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

    + +

    + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Sun does not install this option. It is only included in + Sun’s Java Development Kit (JDK). +

    + +

    + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models will run substantially slower. +

    + +

    +
    + + + + + + + + + + +
    + + Windows +
    + Download + (44M) +
    +
    + +

    +
    + +

    Notes:

    + +
      +
    • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
    • +
    + +

    + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/4.1.3/index.html b/src/pages/downloads/archive/html/4.1.3/index.html new file mode 100644 index 00000000..8fd6e253 --- /dev/null +++ b/src/pages/downloads/archive/html/4.1.3/index.html @@ -0,0 +1,127 @@ + + + + + +NetLogo 4.1.3 Downloads + + + + + + +

    + +

    + + +
    +

    NetLogo 4.1.3 Downloads

    +

    April 3, 2011

    +


    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Mac OS X + +
    + + Download + (43M)
    +
    Windows + +
    + + Download + (63M)
    +
    Other +
    + + Download + (42M)
    +
    + +


    Donate
    + +

    + + +

    +


    + +

    Notes for Windows users:
    + +

      +
    • Our installer includes Java 6 for NetLogo’s private use only. + Other programs on your computer are not affected. +
    • Want to run NetLogo using a Java VM you have + already installed yourself, instead of one bundled + with NetLogo? Click here + for cautions, technical information, and instructions. +
    + +

    +


    + +

    Notes for Linux users:
    + +

      +
    • Some Linux distributions include a Java implementation which is not good + enough to run NetLogo. Make sure you are using Java from Sun, not OpenJDK. +
    + + + + +


    + +

    +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

    + + + + diff --git a/src/pages/downloads/archive/html/4.1.3/windows.html b/src/pages/downloads/archive/html/4.1.3/windows.html new file mode 100644 index 00000000..015a53ab --- /dev/null +++ b/src/pages/downloads/archive/html/4.1.3/windows.html @@ -0,0 +1,122 @@ + + + + + + NetLogo 4.1.3 for Windows without bundled Java + + + +

    + +

    + + + + +
    +

    NetLogo 4.1.3
    for Windows

    +

    (without bundled Java)

    +

    April 3, 2011

    +

    +
    +
    + +

    + + + + +
    + + +

    + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

    + +

    There are two reasons you might want to use the download on this page instead:

    + +
      +
    1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
    2. + +
    3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
    4. +
    + +

    + If you think the download on this page might be appropriate for you, please read the following technical + information. +

    + +

    + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

    + +

    + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Sun does not install this option. It is only included in + Sun’s Java Development Kit (JDK). +

    + +

    + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models will run substantially slower. +

    + +

    +
    + + + + + + + + + + +
    + + Windows +
    + Download + (44M) +
    +
    + +

    +
    + +

    Notes:

    + +
      +
    • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
    • +
    + +

    + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/4.1/index.html b/src/pages/downloads/archive/html/4.1/index.html new file mode 100644 index 00000000..698819bd --- /dev/null +++ b/src/pages/downloads/archive/html/4.1/index.html @@ -0,0 +1,127 @@ + + + + + +NetLogo 4.1.3 Downloads + + + + + + +

    + +

    + + +
    +

    NetLogo 4.1.3 Downloads

    +

    April 3, 2011

    +


    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Mac OS X + +
    + + Download + (43M)
    +
    Windows + +
    + + Download + (63M)
    +
    Other +
    + + Download + (42M)
    +
    + +


    Donate
    + +

    + + +

    +


    + +

    Notes for Windows users:
    + +

      +
    • Our installer includes Java 6 for NetLogo’s private use only. + Other programs on your computer are not affected. +
    • Want to run NetLogo using a Java VM you have + already installed yourself, instead of one bundled + with NetLogo? Click here + for cautions, technical information, and instructions. +
    + +

    +


    + +

    Notes for Linux users:
    + +

      +
    • Some Linux distributions include a Java implementation which is not good + enough to run NetLogo. Make sure you are using Java from Sun, not OpenJDK. +
    + + + + +


    + +

    +Problems downloading? + Write ccl-tech@ccl.northwestern.edu. + + +

    + + + + diff --git a/src/pages/downloads/archive/html/4.1/windows.html b/src/pages/downloads/archive/html/4.1/windows.html new file mode 100644 index 00000000..b170e5df --- /dev/null +++ b/src/pages/downloads/archive/html/4.1/windows.html @@ -0,0 +1,122 @@ + + + + + + NetLogo 4.1.3 for Windows without bundled Java + + + +

    + +

    + + + + +
    +

    NetLogo 4.1.3
    for Windows

    +

    (without bundled Java)

    +

    April 3, 2011

    +

    +
    +
    + +

    + + + + +
    + + +

    + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

    + +

    There are two reasons you might want to use the download on this page instead:

    + +
      +
    1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
    2. + +
    3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
    4. +
    + +

    + If you think the download on this page might be appropriate for you, please read the following technical + information. +

    + +

    + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

    + +

    + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Sun does not install this option. It is only included in + Sun’s Java Development Kit (JDK). +

    + +

    + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models will run substantially slower. +

    + +

    +
    + + + + + + + + + + +
    + + Windows +
    + Download + (44M) +
    +
    + +

    +
    + +

    Notes:

    + +
      +
    • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
    • +
    + +

    + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.0.0/index.html b/src/pages/downloads/archive/html/5.0.0/index.html new file mode 100644 index 00000000..bffa94b2 --- /dev/null +++ b/src/pages/downloads/archive/html/5.0.0/index.html @@ -0,0 +1,160 @@ + + + + + + NetLogo 5.0 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 5.0 Downloads

    +

    February 16, 2012

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (62M) +
    +
    + + Windows +
    + Download + (82M) +
    +
    + + Other +
    + Download + (60M) +
    +
    + + + + + +
    +

    +
    +
    +

    sign up for mailing lists

    +

    + Donate
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Windows users:
    +

    + +
      +
    • + Our installer includes Java 6 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + Want to run NetLogo using a Java VM you have already installed yourself, instead of one bundled with + NetLogo? Click here + for cautions, technical information, and instructions. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Some Linux distributions include a Java implementation which is not good enough to run NetLogo. If you + have trouble, try Java from Sun, not OpenJDK (or, try a newer OpenJDK). +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.0.0/windows.html b/src/pages/downloads/archive/html/5.0.0/windows.html new file mode 100644 index 00000000..c00b744d --- /dev/null +++ b/src/pages/downloads/archive/html/5.0.0/windows.html @@ -0,0 +1,122 @@ + + + + + + NetLogo 5.0 for Windows without bundled Java + + + +

    + +

    + + + + +
    +

    NetLogo 5.0
    for Windows

    +

    (without bundled Java)

    +

    February 16, 2012

    +

    +
    +
    + +

    + + + + +
    + + +

    + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

    + +

    There are two reasons you might want to use the download on this page instead:

    + +
      +
    1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
    2. + +
    3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
    4. +
    + +

    + If you think the download on this page might be appropriate for you, please read the following technical + information. +

    + +

    + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

    + +

    + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Sun does not install this option. It is only included in + Sun’s Java Development Kit (JDK). +

    + +

    + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models may run somewhat slower. +

    + +

    +
    + + + + + + + + + + +
    + + Windows +
    + Download + (62M) +
    +
    + +

    +
    + +

    Notes:

    + +
      +
    • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
    • +
    + +

    + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.0.1/index.html b/src/pages/downloads/archive/html/5.0.1/index.html new file mode 100644 index 00000000..978ef573 --- /dev/null +++ b/src/pages/downloads/archive/html/5.0.1/index.html @@ -0,0 +1,160 @@ + + + + + + NetLogo 5.0.1 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 5.0.1 Downloads

    +

    April 12, 2012

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (63M) +
    +
    + + Windows +
    + Download + (83M) +
    +
    + + Other +
    + Download + (60M) +
    +
    + + + + + +
    +

    +
    +
    +

    sign up for mailing lists

    +

    + Donate
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Windows users:
    +

    + +
      +
    • + Our installer includes Java 6 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + Want to run NetLogo using a Java VM you have already installed yourself, instead of one bundled with + NetLogo? Click here + for cautions, technical information, and instructions. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Some Linux distributions include a Java implementation which is not good enough to run NetLogo. If you + have trouble, try Java from Oracle, not OpenJDK (or, try a newer OpenJDK). +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.0.1/windows.html b/src/pages/downloads/archive/html/5.0.1/windows.html new file mode 100644 index 00000000..fa0958ba --- /dev/null +++ b/src/pages/downloads/archive/html/5.0.1/windows.html @@ -0,0 +1,120 @@ + + + + + + NetLogo 5.0.1 for Windows without bundled Java + + + +

    + +

    + + + + +
    +

    NetLogo 5.0.1
    for Windows

    +

    (without bundled Java)

    +

    April 12, 2012

    +
    + +

    + + + + +
    + + +

    + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

    + +

    There are two reasons you might want to use the download on this page instead:

    + +
      +
    1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
    2. + +
    3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
    4. +
    + +

    + If you think the download on this page might be appropriate for you, please read the following technical + information. +

    + +

    + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

    + +

    + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Oracle does not install this option. It is only included in + Oracle’s Java Development Kit (JDK). +

    + +

    + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models may run somewhat slower. +

    + +

    +
    + + + + + + + + + + +
    + + Windows +
    + Download + (64M) +
    +
    + +

    +
    + +

    Notes:

    + +
      +
    • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
    • +
    + +

    + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.0.2/index.html b/src/pages/downloads/archive/html/5.0.2/index.html new file mode 100644 index 00000000..4b466b4f --- /dev/null +++ b/src/pages/downloads/archive/html/5.0.2/index.html @@ -0,0 +1,160 @@ + + + + + + NetLogo 5.0.2 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 5.0.2 Downloads

    +

    July 27, 2012

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (64M) +
    +
    + + Windows +
    + Download + (84M) +
    +
    + + Other +
    + Download + (61M) +
    +
    + + + + + +
    +

    +
    +
    +

    sign up for mailing lists

    +

    + Donate
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Windows users:
    +

    + +
      +
    • + Our installer includes Java 6 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + Want to run NetLogo using a Java VM you have already installed yourself, instead of one bundled with + NetLogo? Click here + for cautions, technical information, and instructions. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Some Linux distributions include a Java implementation which is not good enough to run NetLogo. If you + have trouble, try Java from Oracle, not OpenJDK (or, try a newer OpenJDK). +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.0.2/windows.html b/src/pages/downloads/archive/html/5.0.2/windows.html new file mode 100644 index 00000000..2d1b3601 --- /dev/null +++ b/src/pages/downloads/archive/html/5.0.2/windows.html @@ -0,0 +1,120 @@ + + + + + + NetLogo 5.0.2 for Windows without bundled Java + + + +

    + +

    + + + + +
    +

    NetLogo 5.0.2
    for Windows

    +

    (without bundled Java)

    +

    July 27, 2012

    +
    + +

    + + + + +
    + + +

    + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

    + +

    There are two reasons you might want to use the download on this page instead:

    + +
      +
    1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
    2. + +
    3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
    4. +
    + +

    + If you think the download on this page might be appropriate for you, please read the following technical + information. +

    + +

    + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

    + +

    + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Oracle does not install this option. It is only included in + Oracle’s Java Development Kit (JDK). +

    + +

    + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models may run somewhat slower. +

    + +

    +
    + + + + + + + + + + +
    + + Windows +
    + Download + (64M) +
    +
    + +

    +
    + +

    Notes:

    + +
      +
    • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
    • +
    + +

    + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.0.3/index.html b/src/pages/downloads/archive/html/5.0.3/index.html new file mode 100644 index 00000000..62b01f12 --- /dev/null +++ b/src/pages/downloads/archive/html/5.0.3/index.html @@ -0,0 +1,168 @@ + + + + + + NetLogo 5.0.3 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 5.0.3 Downloads

    +

    October 25, 2012

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (65M) +
    +
    + + Windows +
    + Download + (86M) +
    +
    + + Other +
    + Download + (64M) +
    +
    + + + + + +
    +

    +
    +
    +

    sign up for mailing lists

    +

    + Donate
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Windows users:
    +

    + +
      +
    • + Our installer includes Java 6 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + Want to run NetLogo using a Java VM you have already installed yourself, instead of one bundled with + NetLogo? Click here + for cautions, technical information, and instructions. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + + + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.0.3/windows.html b/src/pages/downloads/archive/html/5.0.3/windows.html new file mode 100644 index 00000000..a4c0387d --- /dev/null +++ b/src/pages/downloads/archive/html/5.0.3/windows.html @@ -0,0 +1,120 @@ + + + + + + NetLogo 5.0.3 for Windows without bundled Java + + + +

    + +

    + + + + +
    +

    NetLogo 5.0.3
    for Windows

    +

    (without bundled Java)

    +

    October 25, 2012

    +
    + +

    + + + + +
    + + +

    + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

    + +

    There are two reasons you might want to use the download on this page instead:

    + +
      +
    1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
    2. + +
    3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
    4. +
    + +

    + If you think the download on this page might be appropriate for you, please read the following technical + information. +

    + +

    + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

    + +

    + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Oracle does not install this option. It is only included in + Oracle’s Java Development Kit (JDK). +

    + +

    + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models may run somewhat slower. +

    + +

    +
    + + + + + + + + + + +
    + + Windows +
    + Download + (66M) +
    +
    + +

    +
    + +

    Notes:

    + +
      +
    • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
    • +
    + +

    + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.0.4/index.html b/src/pages/downloads/archive/html/5.0.4/index.html new file mode 100644 index 00000000..e6969a65 --- /dev/null +++ b/src/pages/downloads/archive/html/5.0.4/index.html @@ -0,0 +1,168 @@ + + + + + + NetLogo 5.0.4 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 5.0.4 Downloads

    +

    March 19, 2013

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (68M) +
    +
    + + Windows +
    + Download + (88M) +
    +
    + + Other +
    + Download + (66M) +
    +
    + + + + + +
    +

    +
    +
    +

    sign up for mailing lists

    +

    + Donate
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Windows users:
    +

    + +
      +
    • + Our installer includes Java 6 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + Want to run NetLogo using a Java VM you have already installed yourself, instead of one bundled with + NetLogo? Click here + for instructions, cautions, and download link. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + + + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.0.4/windows.html b/src/pages/downloads/archive/html/5.0.4/windows.html new file mode 100644 index 00000000..f03d10d4 --- /dev/null +++ b/src/pages/downloads/archive/html/5.0.4/windows.html @@ -0,0 +1,120 @@ + + + + + + NetLogo 5.0.4 for Windows without bundled Java + + + +

    + +

    + + + + +
    +

    NetLogo 5.0.4
    for Windows

    +

    (without bundled Java)

    +

    March 19, 2013

    +
    + +

    + + + + +
    + + +

    + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

    + +

    There are two reasons you might want to use the download on this page instead:

    + +
      +
    1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
    2. + +
    3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
    4. +
    + +

    + If you think the download on this page might be appropriate for you, please read the following technical + information. +

    + +

    + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

    + +

    + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Oracle does not install this option. It is only included in + Oracle’s Java Development Kit (JDK). +

    + +

    + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models may run somewhat slower. +

    + +

    +
    + + + + + + + + + + +
    + + Windows +
    + Download + (69M) +
    +
    + +

    +
    + +

    Notes:

    + +
      +
    • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
    • +
    + +

    + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.0.5/index.html b/src/pages/downloads/archive/html/5.0.5/index.html new file mode 100644 index 00000000..3d4b7824 --- /dev/null +++ b/src/pages/downloads/archive/html/5.0.5/index.html @@ -0,0 +1,168 @@ + + + + + + NetLogo 5.0.5 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 5.0.5 Downloads

    +

    December 19, 2013

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (69M) +
    +
    + + Windows +
    + Download + (89M) +
    +
    + + Other +
    + Download + (67M) +
    +
    + + + + + +
    +

    +
    +
    +

    sign up for mailing lists

    +

    + Donate
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Windows users:
    +

    + +
      +
    • + Our installer includes Java 6 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + Want to run NetLogo using a Java VM you have already installed yourself, instead of one bundled with + NetLogo? Click here + for instructions, cautions, and download link. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + + + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.0.5/windows.html b/src/pages/downloads/archive/html/5.0.5/windows.html new file mode 100644 index 00000000..4e377621 --- /dev/null +++ b/src/pages/downloads/archive/html/5.0.5/windows.html @@ -0,0 +1,120 @@ + + + + + + NetLogo 5.0.5 for Windows without bundled Java + + + +

    + +

    + + + + +
    +

    NetLogo 5.0.5
    for Windows

    +

    (without bundled Java)

    +

    December 19, 2013

    +
    + +

    + + + + +
    + + +

    + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

    + +

    There are two reasons you might want to use the download on this page instead:

    + +
      +
    1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
    2. + +
    3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
    4. +
    + +

    + If you think the download on this page might be appropriate for you, please read the following technical + information. +

    + +

    + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

    + +

    + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Oracle does not install this option. It is only included in + Oracle’s Java Development Kit (JDK). +

    + +

    + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models may run somewhat slower. +

    + +

    +
    + + + + + + + + + + +
    + + Windows +
    + Download + (70M) +
    +
    + +

    +
    + +

    Notes:

    + +
      +
    • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
    • +
    + +

    + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.0/index.html b/src/pages/downloads/archive/html/5.0/index.html new file mode 100644 index 00000000..f8fb55ed --- /dev/null +++ b/src/pages/downloads/archive/html/5.0/index.html @@ -0,0 +1,168 @@ + + + + + + NetLogo 5.1.0 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 5.1.0 Downloads

    +

    July 25, 2014

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (69M) +
    +
    + + Windows +
    + Download + (89M) +
    +
    + + Other +
    + Download + (67M) +
    +
    + + + + + +
    +

    +
    +
    +

    sign up for mailing lists

    +

    + Donate
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Windows users:
    +

    + +
      +
    • + Our installer includes Java 6 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + Want to run NetLogo using a Java VM you have already installed yourself, instead of one bundled with + NetLogo? Click here + for instructions, cautions, and download link. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + + + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.0/windows.html b/src/pages/downloads/archive/html/5.0/windows.html new file mode 100644 index 00000000..a0cdd353 --- /dev/null +++ b/src/pages/downloads/archive/html/5.0/windows.html @@ -0,0 +1,120 @@ + + + + + + NetLogo 5.1.0 for Windows without bundled Java + + + +

    + +

    + + + + +
    +

    NetLogo 5.1.0
    for Windows

    +

    (without bundled Java)

    +

    July 25, 2014

    +
    + +

    + + + + +
    + + +

    + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

    + +

    There are two reasons you might want to use the download on this page instead:

    + +
      +
    1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
    2. + +
    3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
    4. +
    + +

    + If you think the download on this page might be appropriate for you, please read the following technical + information. +

    + +

    + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

    + +

    + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Oracle does not install this option. It is only included in + Oracle’s Java Development Kit (JDK). +

    + +

    + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models may run somewhat slower. +

    + +

    +
    + + + + + + + + + + +
    + + Windows +
    + Download + (70M) +
    +
    + +

    +
    + +

    Notes:

    + +
      +
    • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
    • +
    + +

    + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.1.0-M1/index.html b/src/pages/downloads/archive/html/5.1.0-M1/index.html new file mode 100644 index 00000000..eef303ac --- /dev/null +++ b/src/pages/downloads/archive/html/5.1.0-M1/index.html @@ -0,0 +1,160 @@ + + + + + + NetLogo 5.1.0-M1 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 5.1.0-M1 Downloads

    +

    INTERIM DEVEL BUILD

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (83M) +
    +
    + + Windows +
    + Download + (104M) +
    +
    + + Other +
    + Download + (78M) +
    +
    + + + + + +
    +

    +
    +
    +

    sign up for mailing lists

    +

    + Donate
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Windows users:
    +

    + +
      +
    • + Our installer includes Java 6 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + Want to run NetLogo using a Java VM you have already installed yourself, instead of one bundled with + NetLogo? Click here + for cautions, technical information, and instructions. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Some Linux distributions include a Java implementation which is not good enough to run NetLogo. If you + have trouble, try Java from Oracle, not OpenJDK (or, try a newer OpenJDK). +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.1.0-M1/windows.html b/src/pages/downloads/archive/html/5.1.0-M1/windows.html new file mode 100644 index 00000000..a3d0093f --- /dev/null +++ b/src/pages/downloads/archive/html/5.1.0-M1/windows.html @@ -0,0 +1,120 @@ + + + + + + NetLogo 5.1.0-M1 for Windows without bundled Java + + + +

    + +

    + + + + +
    +

    NetLogo 5.1.0-M1
    for Windows

    +

    (without bundled Java)

    +

    INTERIM DEVEL BUILD

    +
    + +

    + + + + +
    + + +

    + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

    + +

    There are two reasons you might want to use the download on this page instead:

    + +
      +
    1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
    2. + +
    3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
    4. +
    + +

    + If you think the download on this page might be appropriate for you, please read the following technical + information. +

    + +

    + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

    + +

    + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Oracle does not install this option. It is only included in + Oracle’s Java Development Kit (JDK). +

    + +

    + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models may run somewhat slower. +

    + +

    +
    + + + + + + + + + + +
    + + Windows +
    + Download + (84M) +
    +
    + +

    +
    + +

    Notes:

    + +
      +
    • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
    • +
    + +

    + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.1.0-M2/index.html b/src/pages/downloads/archive/html/5.1.0-M2/index.html new file mode 100644 index 00000000..58c8d9a6 --- /dev/null +++ b/src/pages/downloads/archive/html/5.1.0-M2/index.html @@ -0,0 +1,168 @@ + + + + + + NetLogo 5.1.0-M2 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 5.1.0-M2 Downloads

    +

    INTERIM DEVEL BUILD

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (83M) +
    +
    + + Windows +
    + Download + (104M) +
    +
    + + Other +
    + Download + (78M) +
    +
    + + + + + +
    +

    +
    +
    +

    sign up for mailing lists

    +

    + Donate
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Windows users:
    +

    + +
      +
    • + Our installer includes Java 6 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + Want to run NetLogo using a Java VM you have already installed yourself, instead of one bundled with + NetLogo? Click here + for cautions, technical information, and instructions. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + + + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.1.0-M2/windows.html b/src/pages/downloads/archive/html/5.1.0-M2/windows.html new file mode 100644 index 00000000..bb633da4 --- /dev/null +++ b/src/pages/downloads/archive/html/5.1.0-M2/windows.html @@ -0,0 +1,120 @@ + + + + + + NetLogo 5.1.0-M2 for Windows without bundled Java + + + +

    + +

    + + + + +
    +

    NetLogo 5.1.0-M2
    for Windows

    +

    (without bundled Java)

    +

    INTERIM DEVEL BUILD

    +
    + +

    + + + + +
    + + +

    + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

    + +

    There are two reasons you might want to use the download on this page instead:

    + +
      +
    1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
    2. + +
    3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
    4. +
    + +

    + If you think the download on this page might be appropriate for you, please read the following technical + information. +

    + +

    + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

    + +

    + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Oracle does not install this option. It is only included in + Oracle’s Java Development Kit (JDK). +

    + +

    + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models may run somewhat slower. +

    + +

    +
    + + + + + + + + + + +
    + + Windows +
    + Download + (84M) +
    +
    + +

    +
    + +

    Notes:

    + +
      +
    • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
    • +
    + +

    + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.1.0/index.html b/src/pages/downloads/archive/html/5.1.0/index.html new file mode 100644 index 00000000..d6b92ed8 --- /dev/null +++ b/src/pages/downloads/archive/html/5.1.0/index.html @@ -0,0 +1,168 @@ + + + + + + NetLogo 5.1.0 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 5.1.0 Downloads

    +

    July 25, 2014

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (69M) +
    +
    + + Windows +
    + Download + (89M) +
    +
    + + Other +
    + Download + (67M) +
    +
    + + + + + +
    +

    +
    +
    +

    sign up for mailing lists

    +

    + Donate
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Windows users:
    +

    + +
      +
    • + Our installer includes Java 6 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + Want to run NetLogo using a Java VM you have already installed yourself, instead of one bundled with + NetLogo? Click here + for instructions, cautions, and download link. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + + + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.1.0/windows.html b/src/pages/downloads/archive/html/5.1.0/windows.html new file mode 100644 index 00000000..c567fcd3 --- /dev/null +++ b/src/pages/downloads/archive/html/5.1.0/windows.html @@ -0,0 +1,120 @@ + + + + + + NetLogo 5.1.0 for Windows without bundled Java + + + +

    + +

    + + + + +
    +

    NetLogo 5.1.0
    for Windows

    +

    (without bundled Java)

    +

    July 25, 2014

    +
    + +

    + + + + +
    + + +

    + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

    + +

    There are two reasons you might want to use the download on this page instead:

    + +
      +
    1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
    2. + +
    3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
    4. +
    + +

    + If you think the download on this page might be appropriate for you, please read the following technical + information. +

    + +

    + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

    + +

    + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Oracle does not install this option. It is only included in + Oracle’s Java Development Kit (JDK). +

    + +

    + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models may run somewhat slower. +

    + +

    +
    + + + + + + + + + + +
    + + Windows +
    + Download + (70M) +
    +
    + +

    +
    + +

    Notes:

    + +
      +
    • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
    • +
    + +

    + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.1/index.html b/src/pages/downloads/archive/html/5.1/index.html new file mode 100644 index 00000000..4df52cda --- /dev/null +++ b/src/pages/downloads/archive/html/5.1/index.html @@ -0,0 +1,168 @@ + + + + + + NetLogo 5.1.0 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 5.1.0 Downloads

    +

    July 25, 2014

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (69M) +
    +
    + + Windows +
    + Download + (89M) +
    +
    + + Other +
    + Download + (67M) +
    +
    + + + + + +
    +

    +
    +
    +

    sign up for mailing lists

    +

    + Donate
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Windows users:
    +

    + +
      +
    • + Our installer includes Java 6 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + Want to run NetLogo using a Java VM you have already installed yourself, instead of one bundled with + NetLogo? Click here + for instructions, cautions, and download link. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + + + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.1/windows.html b/src/pages/downloads/archive/html/5.1/windows.html new file mode 100644 index 00000000..14f84c22 --- /dev/null +++ b/src/pages/downloads/archive/html/5.1/windows.html @@ -0,0 +1,120 @@ + + + + + + NetLogo 5.1.0 for Windows without bundled Java + + + +

    + +

    + + + + +
    +

    NetLogo 5.1.0
    for Windows

    +

    (without bundled Java)

    +

    July 25, 2014

    +
    + +

    + + + + +
    + + +

    + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

    + +

    There are two reasons you might want to use the download on this page instead:

    + +
      +
    1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
    2. + +
    3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
    4. +
    + +

    + If you think the download on this page might be appropriate for you, please read the following technical + information. +

    + +

    + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

    + +

    + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Oracle does not install this option. It is only included in + Oracle’s Java Development Kit (JDK). +

    + +

    + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models may run somewhat slower. +

    + +

    +
    + + + + + + + + + + +
    + + Windows +
    + Download + (70M) +
    +
    + +

    +
    + +

    Notes:

    + +
      +
    • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
    • +
    + +

    + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.2-RC2/index.html b/src/pages/downloads/archive/html/5.2-RC2/index.html new file mode 100644 index 00000000..47bb5fbc --- /dev/null +++ b/src/pages/downloads/archive/html/5.2-RC2/index.html @@ -0,0 +1,168 @@ + + + + + + NetLogo 5.2-RC2 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 5.2-RC2 Downloads

    +

    January 26, 2015

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (71M) +
    +
    + + Windows +
    + Download + (91M) +
    +
    + + Other +
    + Download + (69M) +
    +
    + + + + + +
    +

    +
    +
    +

    sign up for mailing lists

    +

    + Donate
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Windows users:
    +

    + +
      +
    • + Our installer includes Java 6 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + Want to run NetLogo using a Java VM you have already installed yourself, instead of one bundled with + NetLogo? Click here + for instructions, cautions, and download link. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + + + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.2-RC2/windows.html b/src/pages/downloads/archive/html/5.2-RC2/windows.html new file mode 100644 index 00000000..30d78e3f --- /dev/null +++ b/src/pages/downloads/archive/html/5.2-RC2/windows.html @@ -0,0 +1,120 @@ + + + + + + NetLogo 5.2-RC2 for Windows without bundled Java + + + +

    + +

    + + + + +
    +

    NetLogo 5.2-RC2
    for Windows

    +

    (without bundled Java)

    +

    January 26, 2015

    +
    + +

    + + + + +
    + + +

    + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

    + +

    There are two reasons you might want to use the download on this page instead:

    + +
      +
    1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
    2. + +
    3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
    4. +
    + +

    + If you think the download on this page might be appropriate for you, please read the following technical + information. +

    + +

    + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

    + +

    + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Oracle does not install this option. It is only included in + Oracle’s Java Development Kit (JDK). +

    + +

    + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models may run somewhat slower. +

    + +

    +
    + + + + + + + + + + +
    + + Windows +
    + Download + (72M) +
    +
    + +

    +
    + +

    Notes:

    + +
      +
    • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
    • +
    + +

    + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.2-RC3/index.html b/src/pages/downloads/archive/html/5.2-RC3/index.html new file mode 100644 index 00000000..eeff1cf3 --- /dev/null +++ b/src/pages/downloads/archive/html/5.2-RC3/index.html @@ -0,0 +1,168 @@ + + + + + + NetLogo 5.2-RC3 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 5.2-RC3 Downloads

    +

    January 26, 2015

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (99M) +
    +
    + + Windows +
    + Download + (119M) +
    +
    + + Other +
    + Download + (97M) +
    +
    + + + + + +
    +

    +
    +
    +

    sign up for mailing lists

    +

    + Donate
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Windows users:
    +

    + +
      +
    • + Our installer includes Java 6 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + Want to run NetLogo using a Java VM you have already installed yourself, instead of one bundled with + NetLogo? Click here + for instructions, cautions, and download link. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + + + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.2-RC3/windows.html b/src/pages/downloads/archive/html/5.2-RC3/windows.html new file mode 100644 index 00000000..09b5bcf9 --- /dev/null +++ b/src/pages/downloads/archive/html/5.2-RC3/windows.html @@ -0,0 +1,120 @@ + + + + + + NetLogo 5.2-RC3 for Windows without bundled Java + + + +

    + +

    + + + + +
    +

    NetLogo 5.2-RC3
    for Windows

    +

    (without bundled Java)

    +

    January 26, 2015

    +
    + +

    + + + + +
    + + +

    + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

    + +

    There are two reasons you might want to use the download on this page instead:

    + +
      +
    1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
    2. + +
    3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
    4. +
    + +

    + If you think the download on this page might be appropriate for you, please read the following technical + information. +

    + +

    + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

    + +

    + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Oracle does not install this option. It is only included in + Oracle’s Java Development Kit (JDK). +

    + +

    + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models may run somewhat slower. +

    + +

    +
    + + + + + + + + + + +
    + + Windows +
    + Download + (100M) +
    +
    + +

    +
    + +

    Notes:

    + +
      +
    • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
    • +
    + +

    + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.2.0-RC4/index.html b/src/pages/downloads/archive/html/5.2.0-RC4/index.html new file mode 100644 index 00000000..74ef6b4c --- /dev/null +++ b/src/pages/downloads/archive/html/5.2.0-RC4/index.html @@ -0,0 +1,168 @@ + + + + + + NetLogo 5.2.0-RC4 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 5.2.0-RC4 Downloads

    +

    March 21, 2015

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (102M) +
    +
    + + Windows +
    + Download + (122M) +
    +
    + + Other +
    + Download + (100M) +
    +
    + + + + + +
    +

    +
    +
    +

    sign up for mailing lists

    +

    + Donate
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Windows users:
    +

    + +
      +
    • + Our installer includes Java 6 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + Want to run NetLogo using a Java VM you have already installed yourself, instead of one bundled with + NetLogo? Click here + for instructions, cautions, and download link. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + + + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.2.0-RC4/windows.html b/src/pages/downloads/archive/html/5.2.0-RC4/windows.html new file mode 100644 index 00000000..fe14cec3 --- /dev/null +++ b/src/pages/downloads/archive/html/5.2.0-RC4/windows.html @@ -0,0 +1,120 @@ + + + + + + NetLogo 5.2.0-RC4 for Windows without bundled Java + + + +

    + +

    + + + + +
    +

    NetLogo 5.2.0-RC4
    for Windows

    +

    (without bundled Java)

    +

    March 21, 2015

    +
    + +

    + + + + +
    + + +

    + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

    + +

    There are two reasons you might want to use the download on this page instead:

    + +
      +
    1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
    2. + +
    3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
    4. +
    + +

    + If you think the download on this page might be appropriate for you, please read the following technical + information. +

    + +

    + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

    + +

    + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Oracle does not install this option. It is only included in + Oracle’s Java Development Kit (JDK). +

    + +

    + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models may run somewhat slower. +

    + +

    +
    + + + + + + + + + + +
    + + Windows +
    + Download + (103M) +
    +
    + +

    +
    + +

    Notes:

    + +
      +
    • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
    • +
    + +

    + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.2.0-RC5/index.html b/src/pages/downloads/archive/html/5.2.0-RC5/index.html new file mode 100644 index 00000000..32dd1cef --- /dev/null +++ b/src/pages/downloads/archive/html/5.2.0-RC5/index.html @@ -0,0 +1,199 @@ + + + + + + NetLogo 5.2.0-RC5 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 5.2.0-RC5 Downloads

    +

    April 1, 2015

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (103M) +
    +
    On OS X 10.10 (Yosemite) or later? See below!
    + + Windows +
    + Download + (123M) +
    +
    + + Other +
    + Download + (101M) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + NetLogo requires the Apple supported Java6 that can be found on Apple's support website at + http://support.apple.com/kb/DL1572 +
    • + +
    • + Some users have experienced problems after upgrading their version of OS X to the Yosemite OS. Installing + the aforementioned Java6 package will fix the issue. Please see + these notes + for more information. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Our installer includes Java 6 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + Want to run NetLogo using a Java VM you have already installed yourself, instead of one bundled with + NetLogo? Click here + for instructions, cautions, and download link. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + + + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.2.0-RC5/windows.html b/src/pages/downloads/archive/html/5.2.0-RC5/windows.html new file mode 100644 index 00000000..c7824a4a --- /dev/null +++ b/src/pages/downloads/archive/html/5.2.0-RC5/windows.html @@ -0,0 +1,120 @@ + + + + + + NetLogo 5.2.0-RC5 for Windows without bundled Java + + + +

    + +

    + + + + +
    +

    NetLogo 5.2.0-RC5
    for Windows

    +

    (without bundled Java)

    +

    April 1, 2015

    +
    + +

    + + + + +
    + + +

    + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

    + +

    There are two reasons you might want to use the download on this page instead:

    + +
      +
    1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
    2. + +
    3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
    4. +
    + +

    + If you think the download on this page might be appropriate for you, please read the following technical + information. +

    + +

    + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

    + +

    + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Oracle does not install this option. It is only included in + Oracle’s Java Development Kit (JDK). +

    + +

    + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models may run somewhat slower. +

    + +

    +
    + + + + + + + + + + +
    + + Windows +
    + Download + (104M) +
    +
    + +

    +
    + +

    Notes:

    + +
      +
    • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
    • +
    + +

    + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.2.0/index.html b/src/pages/downloads/archive/html/5.2.0/index.html new file mode 100644 index 00000000..3d37b272 --- /dev/null +++ b/src/pages/downloads/archive/html/5.2.0/index.html @@ -0,0 +1,199 @@ + + + + + + NetLogo 5.2 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 5.2 Downloads

    +

    April 3, 2015

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (104M) +
    +
    On OS X 10.10 (Yosemite) or later? See below!
    + + Windows +
    + Download + (123M) +
    +
    + + Other +
    + Download + (101M) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + NetLogo requires the Apple supported Java6 that can be found on Apple's support website at + http://support.apple.com/kb/DL1572 +
    • + +
    • + Some users have experienced problems after upgrading their version of OS X to the Yosemite OS. Installing + the aforementioned Java6 package will fix the issue. Please see + these notes + for more information. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Our installer includes Java 6 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + Want to run NetLogo using a Java VM you have already installed yourself, instead of one bundled with + NetLogo? Click here + for instructions, cautions, and download link. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + + + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.2.0/windows.html b/src/pages/downloads/archive/html/5.2.0/windows.html new file mode 100644 index 00000000..ad496cf1 --- /dev/null +++ b/src/pages/downloads/archive/html/5.2.0/windows.html @@ -0,0 +1,120 @@ + + + + + + NetLogo 5.2 for Windows without bundled Java + + + +

    + +

    + + + + +
    +

    NetLogo 5.2
    for Windows

    +

    (without bundled Java)

    +

    April 3, 2015

    +
    + +

    + + + + +
    + + +

    + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

    + +

    There are two reasons you might want to use the download on this page instead:

    + +
      +
    1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
    2. + +
    3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
    4. +
    + +

    + If you think the download on this page might be appropriate for you, please read the following technical + information. +

    + +

    + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

    + +

    + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Oracle does not install this option. It is only included in + Oracle’s Java Development Kit (JDK). +

    + +

    + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models may run somewhat slower. +

    + +

    +
    + + + + + + + + + + +
    + + Windows +
    + Download + (104M) +
    +
    + +

    +
    + +

    Notes:

    + +
      +
    • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
    • +
    + +

    + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.2.1/index.html b/src/pages/downloads/archive/html/5.2.1/index.html new file mode 100644 index 00000000..0e116f23 --- /dev/null +++ b/src/pages/downloads/archive/html/5.2.1/index.html @@ -0,0 +1,199 @@ + + + + + + NetLogo 5.2.1 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 5.2.1 Downloads

    +

    October 1, 2015

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (106M) +
    +
    On OS X 10.10 (Yosemite) or later? See below!
    + + Windows +
    + Download + (126M) +
    +
    + + Other +
    + Download + (104M) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + NetLogo requires the Apple supported Java6 that can be found on Apple's support website at + http://support.apple.com/kb/DL1572 +
    • + +
    • + Some users have experienced problems after upgrading their version of OS X to the Yosemite OS. Installing + the aforementioned Java6 package will fix the issue. Please see + these notes + for more information. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Our installer includes Java 6 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + Want to run NetLogo using a Java VM you have already installed yourself, instead of one bundled with + NetLogo? Click here + for instructions, cautions, and download link. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + + + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.2.1/windows.html b/src/pages/downloads/archive/html/5.2.1/windows.html new file mode 100644 index 00000000..b20ab88d --- /dev/null +++ b/src/pages/downloads/archive/html/5.2.1/windows.html @@ -0,0 +1,120 @@ + + + + + + NetLogo 5.2.1 for Windows without bundled Java + + + +

    + +

    + + + + +
    +

    NetLogo 5.2.1
    for Windows

    +

    (without bundled Java)

    +

    October 1, 2015

    +
    + +

    + + + + +
    + + +

    + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

    + +

    There are two reasons you might want to use the download on this page instead:

    + +
      +
    1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
    2. + +
    3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
    4. +
    + +

    + If you think the download on this page might be appropriate for you, please read the following technical + information. +

    + +

    + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

    + +

    + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Oracle does not install this option. It is only included in + Oracle’s Java Development Kit (JDK). +

    + +

    + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models may run somewhat slower. +

    + +

    +
    + + + + + + + + + + +
    + + Windows +
    + Download + (107M) +
    +
    + +

    +
    + +

    Notes:

    + +
      +
    • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
    • +
    + +

    + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.2/index.html b/src/pages/downloads/archive/html/5.2/index.html new file mode 100644 index 00000000..c5546fc2 --- /dev/null +++ b/src/pages/downloads/archive/html/5.2/index.html @@ -0,0 +1,199 @@ + + + + + + NetLogo 5.2.1 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 5.2.1 Downloads

    +

    October 1, 2015

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (106M) +
    +
    On OS X 10.10 (Yosemite) or later? See below!
    + + Windows +
    + Download + (126M) +
    +
    + + Other +
    + Download + (104M) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + NetLogo requires the Apple supported Java6 that can be found on Apple's support website at + http://support.apple.com/kb/DL1572 +
    • + +
    • + Some users have experienced problems after upgrading their version of OS X to the Yosemite OS. Installing + the aforementioned Java6 package will fix the issue. Please see + these notes + for more information. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Our installer includes Java 6 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + Want to run NetLogo using a Java VM you have already installed yourself, instead of one bundled with + NetLogo? Click here + for instructions, cautions, and download link. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + + + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.2/windows.html b/src/pages/downloads/archive/html/5.2/windows.html new file mode 100644 index 00000000..48b122d5 --- /dev/null +++ b/src/pages/downloads/archive/html/5.2/windows.html @@ -0,0 +1,120 @@ + + + + + + NetLogo 5.2.1 for Windows without bundled Java + + + +

    + +

    + + + + +
    +

    NetLogo 5.2.1
    for Windows

    +

    (without bundled Java)

    +

    October 1, 2015

    +
    + +

    + + + + +
    + + +

    + Most Windows users should choose the NetLogo download with bundled Java, available from the + main download page. +

    + +

    There are two reasons you might want to use the download on this page instead:

    + +
      +
    1. You want a smaller download so it arrives faster and uses up less space on your hard drive.
    2. + +
    3. + For specific technical reasons of your own, you want to run NetLogo using a different Java than the one we + bundle. +
    4. +
    + +

    + If you think the download on this page might be appropriate for you, please read the following technical + information. +

    + +

    + Even if you already have Java installed on your computer, using that Java may make NetLogo run slowly. +

    + +

    + For maximum performance, NetLogo uses a special option called the “server” VM. The default Java + Runtime Environment (JRE) installer from Oracle does not install this option. It is only included in + Oracle’s Java Development Kit (JDK). +

    + +

    + If you are not a Java developer, then you probably have the JRE, not the JDK, and if you use it with + NetLogo, models may run somewhat slower. +

    + +

    +
    + + + + + + + + + + +
    + + Windows +
    + Download + (107M) +
    +
    + +

    +
    + +

    Notes:

    + +
      +
    • + Certain anti-virus software may cause a long pause (as much as a minute or longer) near the end of the + download process. +
    • +
    + +

    + Problems downloading? Write + ccl-tech@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.3-RC1/index.html b/src/pages/downloads/archive/html/5.3-RC1/index.html new file mode 100644 index 00000000..7ef58f30 --- /dev/null +++ b/src/pages/downloads/archive/html/5.3-RC1/index.html @@ -0,0 +1,222 @@ + + + + + + NetLogo 5.3-RC1 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 5.3-RC1 Downloads

    +

    December 4, 2015

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (181 MB) +
    +
    + + Windows (32-bit) +
    + Download + (158 MB) +
    +
    + + Windows (64-bit) +
    + Download + (160 MB) +
    +
    + + Other (32-bit) +
    + Download + (173 MB) +
    +
    + + Other (64-bit) +
    + Download + (171 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + NetLogo 5.3-RC1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.3.0/index.html b/src/pages/downloads/archive/html/5.3.0/index.html new file mode 100644 index 00000000..e2d121c6 --- /dev/null +++ b/src/pages/downloads/archive/html/5.3.0/index.html @@ -0,0 +1,222 @@ + + + + + + NetLogo 5.3 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 5.3 Downloads

    +

    December 4, 2015

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (181 MB) +
    +
    + + Windows (32-bit) +
    + Download + (158 MB) +
    +
    + + Windows (64-bit) +
    + Download + (160 MB) +
    +
    + + Linux (32-bit) +
    + Download + (173 MB) +
    +
    + + Linux (64-bit) +
    + Download + (171 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + NetLogo 5.3 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.3.1-RC1/index.html b/src/pages/downloads/archive/html/5.3.1-RC1/index.html new file mode 100644 index 00000000..561a44fb --- /dev/null +++ b/src/pages/downloads/archive/html/5.3.1-RC1/index.html @@ -0,0 +1,222 @@ + + + + + + NetLogo 5.3.1-RC1 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 5.3.1-RC1 Downloads

    +

    January 26, 2016

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (182 MB) +
    +
    + + Windows (32-bit) +
    + Download + (159 MB) +
    +
    + + Windows (64-bit) +
    + Download + (160 MB) +
    +
    + + Linux (32-bit) +
    + Download + (174 MB) +
    +
    + + Linux (64-bit) +
    + Download + (172 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + NetLogo 5.3.1-RC1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.3.1-RC2/index.html b/src/pages/downloads/archive/html/5.3.1-RC2/index.html new file mode 100644 index 00000000..fa1f1045 --- /dev/null +++ b/src/pages/downloads/archive/html/5.3.1-RC2/index.html @@ -0,0 +1,222 @@ + + + + + + NetLogo 5.3.1-RC2 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 5.3.1-RC2 Downloads

    +

    February 16, 2016

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (172 MB) +
    +
    + + Windows (32-bit) +
    + Download + (157 MB) +
    +
    + + Windows (64-bit) +
    + Download + (159 MB) +
    +
    + + Linux (32-bit) +
    + Download + (172 MB) +
    +
    + + Linux (64-bit) +
    + Download + (170 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + NetLogo 5.3.1-RC2 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.3.1-RC3/index.html b/src/pages/downloads/archive/html/5.3.1-RC3/index.html new file mode 100644 index 00000000..60fd5057 --- /dev/null +++ b/src/pages/downloads/archive/html/5.3.1-RC3/index.html @@ -0,0 +1,222 @@ + + + + + + NetLogo 5.3.1-RC3 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 5.3.1-RC3 Downloads

    +

    February 23, 2016

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (168 MB) +
    +
    + + Windows (32-bit) +
    + Download + (158 MB) +
    +
    + + Windows (64-bit) +
    + Download + (159 MB) +
    +
    + + Linux (32-bit) +
    + Download + (173 MB) +
    +
    + + Linux (64-bit) +
    + Download + (171 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + NetLogo 5.3.1-RC3 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.3.1/index.html b/src/pages/downloads/archive/html/5.3.1/index.html new file mode 100644 index 00000000..da715eae --- /dev/null +++ b/src/pages/downloads/archive/html/5.3.1/index.html @@ -0,0 +1,222 @@ + + + + + + NetLogo 5.3.1 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 5.3.1 Downloads

    +

    February 29, 2016

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (168 MB) +
    +
    + + Windows (32-bit) +
    + Download + (158 MB) +
    +
    + + Windows (64-bit) +
    + Download + (159 MB) +
    +
    + + Linux (32-bit) +
    + Download + (173 MB) +
    +
    + + Linux (64-bit) +
    + Download + (171 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + NetLogo 5.3.1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/5.3/index.html b/src/pages/downloads/archive/html/5.3/index.html new file mode 100644 index 00000000..6200d139 --- /dev/null +++ b/src/pages/downloads/archive/html/5.3/index.html @@ -0,0 +1,222 @@ + + + + + + NetLogo 5.3.1 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 5.3.1 Downloads

    +

    February 29, 2016

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (168 MB) +
    +
    + + Windows (32-bit) +
    + Download + (158 MB) +
    +
    + + Windows (64-bit) +
    + Download + (159 MB) +
    +
    + + Linux (32-bit) +
    + Download + (173 MB) +
    +
    + + Linux (64-bit) +
    + Download + (171 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + NetLogo 5.3.1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/6.0-BETA1/index.html b/src/pages/downloads/archive/html/6.0-BETA1/index.html new file mode 100644 index 00000000..8b7c57c1 --- /dev/null +++ b/src/pages/downloads/archive/html/6.0-BETA1/index.html @@ -0,0 +1,225 @@ + + + + + + NetLogo 6.0-BETA1 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 6.0-BETA1 Downloads

    +

    October 24, 2016

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (179 MB) +
    +
    + + Windows (32-bit) +
    + Download + (157 MB) +
    +
    + + Windows (64-bit) +
    + Download + (158 MB) +
    +
    + + Linux (32-bit) +
    + Download + (171 MB) +
    +
    + + Linux (64-bit) +
    + Download + (167 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + NetLogo 6.0-BETA1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
    • +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/6.0-BETA2/index.html b/src/pages/downloads/archive/html/6.0-BETA2/index.html new file mode 100644 index 00000000..13e1448e --- /dev/null +++ b/src/pages/downloads/archive/html/6.0-BETA2/index.html @@ -0,0 +1,225 @@ + + + + + + NetLogo 6.0-BETA2 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 6.0-BETA2 Downloads

    +

    November 21, 2016

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (190 MB) +
    +
    + + Windows (32-bit) +
    + Download + (165 MB) +
    +
    + + Windows (64-bit) +
    + Download + (167 MB) +
    +
    + + Linux (32-bit) +
    + Download + (190 MB) +
    +
    + + Linux (64-bit) +
    + Download + (187 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + NetLogo 6.0-BETA2 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
    • +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/6.0-CONSTRUCTIONISM-2016-PREVIEW/index.html b/src/pages/downloads/archive/html/6.0-CONSTRUCTIONISM-2016-PREVIEW/index.html new file mode 100644 index 00000000..09b6113b --- /dev/null +++ b/src/pages/downloads/archive/html/6.0-CONSTRUCTIONISM-2016-PREVIEW/index.html @@ -0,0 +1,238 @@ + + + + + + NetLogo 6.0-CONSTRUCTIONISM-2016-PREVIEW Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 6.0-CONSTRUCTIONISM-2016-PREVIEW Downloads

    +

    December 4, 2015

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (195 MB) +
    +
    + + Windows (32-bit) +
    + Download + (180 MB) +
    +
    + + Windows (64-bit) +
    + Download + (181 MB) +
    +
    + + Linux (32-bit) +
    + Download + (195 MB) +
    +
    + + Linux (64-bit) +
    + Download + (193 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + NetLogo 6.0-CONSTRUCTIONISM-2016-PREVIEW requires OS X 10.7.4 or higher. If you need to run NetLogo on an + older version, please consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/6.0-M1/index.html b/src/pages/downloads/archive/html/6.0-M1/index.html new file mode 100644 index 00000000..3b41c427 --- /dev/null +++ b/src/pages/downloads/archive/html/6.0-M1/index.html @@ -0,0 +1,222 @@ + + + + + + NetLogo 6.0-M1 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 6.0-M1 Downloads

    +

    December 4, 2015

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (159 MB) +
    +
    + + Windows (32-bit) +
    + Download + (148 MB) +
    +
    + + Windows (64-bit) +
    + Download + (150 MB) +
    +
    + + Linux (32-bit) +
    + Download + (159 MB) +
    +
    + + Linux (64-bit) +
    + Download + (157 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + NetLogo 6.0-M1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/6.0-M2/index.html b/src/pages/downloads/archive/html/6.0-M2/index.html new file mode 100644 index 00000000..9ac5f857 --- /dev/null +++ b/src/pages/downloads/archive/html/6.0-M2/index.html @@ -0,0 +1,222 @@ + + + + + + NetLogo 6.0-M2 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 6.0-M2 Downloads

    +

    March 25, 2016

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (160 MB) +
    +
    + + Windows (32-bit) +
    + Download + (154 MB) +
    +
    + + Windows (64-bit) +
    + Download + (150 MB) +
    +
    + + Linux (32-bit) +
    + Download + (159 MB) +
    +
    + + Linux (64-bit) +
    + Download + (157 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + NetLogo 6.0-M2 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/6.0-M3/index.html b/src/pages/downloads/archive/html/6.0-M3/index.html new file mode 100644 index 00000000..7238ec6e --- /dev/null +++ b/src/pages/downloads/archive/html/6.0-M3/index.html @@ -0,0 +1,222 @@ + + + + + + NetLogo 6.0-M3 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 6.0-M3 Downloads

    +

    March 30, 2016

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (160 MB) +
    +
    + + Windows (32-bit) +
    + Download + (149 MB) +
    +
    + + Windows (64-bit) +
    + Download + (150 MB) +
    +
    + + Linux (32-bit) +
    + Download + (160 MB) +
    +
    + + Linux (64-bit) +
    + Download + (158 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + NetLogo 6.0-M3 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/6.0-M4/index.html b/src/pages/downloads/archive/html/6.0-M4/index.html new file mode 100644 index 00000000..bd17be2b --- /dev/null +++ b/src/pages/downloads/archive/html/6.0-M4/index.html @@ -0,0 +1,222 @@ + + + + + + NetLogo 6.0-M4 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 6.0-M4 Downloads

    +

    April 1, 2016

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (160 MB) +
    +
    + + Windows (32-bit) +
    + Download + (149 MB) +
    +
    + + Windows (64-bit) +
    + Download + (150 MB) +
    +
    + + Linux (32-bit) +
    + Download + (160 MB) +
    +
    + + Linux (64-bit) +
    + Download + (158 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + NetLogo 6.0-M4 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/6.0-M5/index.html b/src/pages/downloads/archive/html/6.0-M5/index.html new file mode 100644 index 00000000..4001b4ac --- /dev/null +++ b/src/pages/downloads/archive/html/6.0-M5/index.html @@ -0,0 +1,222 @@ + + + + + + NetLogo 6.0-M5 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 6.0-M5 Downloads

    +

    April 19, 2016

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (160 MB) +
    +
    + + Windows (32-bit) +
    + Download + (149 MB) +
    +
    + + Windows (64-bit) +
    + Download + (150 MB) +
    +
    + + Linux (32-bit) +
    + Download + (160 MB) +
    +
    + + Linux (64-bit) +
    + Download + (158 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + NetLogo 6.0-M5 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/6.0-M6/index.html b/src/pages/downloads/archive/html/6.0-M6/index.html new file mode 100644 index 00000000..ab79f669 --- /dev/null +++ b/src/pages/downloads/archive/html/6.0-M6/index.html @@ -0,0 +1,222 @@ + + + + + + NetLogo 6.0-M6 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 6.0-M6 Downloads

    +

    May 3, 2016

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (161 MB) +
    +
    + + Windows (32-bit) +
    + Download + (150 MB) +
    +
    + + Windows (64-bit) +
    + Download + (151 MB) +
    +
    + + Linux (32-bit) +
    + Download + (161 MB) +
    +
    + + Linux (64-bit) +
    + Download + (158 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + NetLogo 6.0-M6 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/6.0-M7/index.html b/src/pages/downloads/archive/html/6.0-M7/index.html new file mode 100644 index 00000000..2757cab9 --- /dev/null +++ b/src/pages/downloads/archive/html/6.0-M7/index.html @@ -0,0 +1,222 @@ + + + + + + NetLogo 6.0-M7 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 6.0-M7 Downloads

    +

    May 23, 2016

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (168 MB) +
    +
    + + Windows (32-bit) +
    + Download + (152 MB) +
    +
    + + Windows (64-bit) +
    + Download + (153 MB) +
    +
    + + Linux (32-bit) +
    + Download + (167 MB) +
    +
    + + Linux (64-bit) +
    + Download + (164 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + NetLogo 6.0-M7 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/6.0-M8/index.html b/src/pages/downloads/archive/html/6.0-M8/index.html new file mode 100644 index 00000000..d53fae8a --- /dev/null +++ b/src/pages/downloads/archive/html/6.0-M8/index.html @@ -0,0 +1,222 @@ + + + + + + NetLogo 6.0-M8 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 6.0-M8 Downloads

    +

    June 6, 2016

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (168 MB) +
    +
    + + Windows (32-bit) +
    + Download + (152 MB) +
    +
    + + Windows (64-bit) +
    + Download + (153 MB) +
    +
    + + Linux (32-bit) +
    + Download + (157 MB) +
    +
    + + Linux (64-bit) +
    + Download + (164 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + NetLogo 6.0-M8 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/6.0-M9/index.html b/src/pages/downloads/archive/html/6.0-M9/index.html new file mode 100644 index 00000000..74aab8a2 --- /dev/null +++ b/src/pages/downloads/archive/html/6.0-M9/index.html @@ -0,0 +1,222 @@ + + + + + + NetLogo 6.0-M9 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 6.0-M9 Downloads

    +

    July 22, 2016

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (171 MB) +
    +
    + + Windows (32-bit) +
    + Download + (153 MB) +
    +
    + + Windows (64-bit) +
    + Download + (155 MB) +
    +
    + + Linux (32-bit) +
    + Download + (164 MB) +
    +
    + + Linux (64-bit) +
    + Download + (166 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + NetLogo 6.0-M9 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/6.0.0/index.html b/src/pages/downloads/archive/html/6.0.0/index.html new file mode 100644 index 00000000..39392bf6 --- /dev/null +++ b/src/pages/downloads/archive/html/6.0.0/index.html @@ -0,0 +1,225 @@ + + + + + + NetLogo 6.0 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 6.0 Downloads

    +

    January 5, 2017

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (199 MB) +
    +
    + + Windows (32-bit) +
    + Download + (175 MB) +
    +
    + + Windows (64-bit) +
    + Download + (177 MB) +
    +
    + + Linux (32-bit) +
    + Download + (199 MB) +
    +
    + + Linux (64-bit) +
    + Download + (197 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + NetLogo 6.0 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
    • +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/6.0.1-M1/index.html b/src/pages/downloads/archive/html/6.0.1-M1/index.html new file mode 100644 index 00000000..f2da5592 --- /dev/null +++ b/src/pages/downloads/archive/html/6.0.1-M1/index.html @@ -0,0 +1,225 @@ + + + + + + NetLogo 6.0.1-M1 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 6.0.1-M1 Downloads

    +

    February 16, 2017

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (199 MB) +
    +
    + + Windows (32-bit) +
    + Download + (175 MB) +
    +
    + + Windows (64-bit) +
    + Download + (177 MB) +
    +
    + + Linux (32-bit) +
    + Download + (200 MB) +
    +
    + + Linux (64-bit) +
    + Download + (197 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + NetLogo 6.0.1-M1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
    • +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/6.0.1-RC1/index.html b/src/pages/downloads/archive/html/6.0.1-RC1/index.html new file mode 100644 index 00000000..2d46f913 --- /dev/null +++ b/src/pages/downloads/archive/html/6.0.1-RC1/index.html @@ -0,0 +1,225 @@ + + + + + + NetLogo 6.0.1-RC1 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 6.0.1-RC1 Downloads

    +

    March 1, 2017

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (199 MB) +
    +
    + + Windows (32-bit) +
    + Download + (175 MB) +
    +
    + + Windows (64-bit) +
    + Download + (176 MB) +
    +
    + + Linux (32-bit) +
    + Download + (199 MB) +
    +
    + + Linux (64-bit) +
    + Download + (197 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + NetLogo 6.0.1-RC1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
    • +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/6.0.1/index.html b/src/pages/downloads/archive/html/6.0.1/index.html new file mode 100644 index 00000000..59b648b6 --- /dev/null +++ b/src/pages/downloads/archive/html/6.0.1/index.html @@ -0,0 +1,230 @@ + + + + + + NetLogo 6.0.1 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 6.0.1 Downloads

    +

    March 21, 2017

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (199 MB) +
    +
    + + Windows (32-bit) +
    + Download + (175 MB) +
    +
    + + Windows (64-bit) +
    + Download + (176 MB) +
    +
    + + Linux (32-bit) +
    + Download + (199 MB) +
    +
    + + Linux (64-bit) +
    + Download + (197 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + Some users have reported problems running NetLogo 6 on Mac OS Sierra. We're continuing to investigate this + and hope to find a fix soon. For the latest updates and workaround information, please see our + known issues page. +
    • +
    • + NetLogo 6.0.1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
    • +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/6.0.2-RC1/index.html b/src/pages/downloads/archive/html/6.0.2-RC1/index.html new file mode 100644 index 00000000..c215cd85 --- /dev/null +++ b/src/pages/downloads/archive/html/6.0.2-RC1/index.html @@ -0,0 +1,213 @@ + + + + + + NetLogo 6.0.2-RC1 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 6.0.2 Downloads

    +

    August 11, 2017

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Windows (32-bit) +
    + Download + (171 MB) +
    +
    + + Windows (64-bit) +
    + Download + (173 MB) +
    +
    + + Linux (32-bit) +
    + Download + (192 MB) +
    +
    + + Linux (64-bit) +
    + Download + (190 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + Some users have reported problems running NetLogo 6 on Mac OS Sierra. We're continuing to investigate this + and hope to find a fix soon. For the latest updates and workaround information, please see our + known issues page. +
    • +
    • + NetLogo 6.0.2 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
    • +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/6.0.2/index.html b/src/pages/downloads/archive/html/6.0.2/index.html new file mode 100644 index 00000000..057f897d --- /dev/null +++ b/src/pages/downloads/archive/html/6.0.2/index.html @@ -0,0 +1,230 @@ + + + + + + NetLogo 6.0.2 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 6.0.2 Downloads

    +

    August 11, 2017

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (191 MB) +
    +
    + + Windows (32-bit) +
    + Download + (171 MB) +
    +
    + + Windows (64-bit) +
    + Download + (173 MB) +
    +
    + + Linux (32-bit) +
    + Download + (192 MB) +
    +
    + + Linux (64-bit) +
    + Download + (190 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + Some users have reported problems running NetLogo 6 on Mac OS Sierra. We're continuing to investigate this + and hope to find a fix soon. For the latest updates and workaround information, please see our + known issues page. +
    • +
    • + NetLogo 6.0.2 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
    • +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/6.0.3/index.html b/src/pages/downloads/archive/html/6.0.3/index.html new file mode 100644 index 00000000..c2bbfcd0 --- /dev/null +++ b/src/pages/downloads/archive/html/6.0.3/index.html @@ -0,0 +1,230 @@ + + + + + + NetLogo 6.0.3 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 6.0.3 Downloads

    +

    March 21, 2018

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (226 MB) +
    +
    + + Windows (32-bit) +
    + Download + (181 MB) +
    +
    + + Windows (64-bit) +
    + Download + (183 MB) +
    +
    + + Linux (32-bit) +
    + Download + (202 MB) +
    +
    + + Linux (64-bit) +
    + Download + (199 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + Some users have reported problems running NetLogo 6 on Mac OS Sierra. We're continuing to investigate this + and hope to find a fix soon. For the latest updates and workaround information, please see our + known issues page. +
    • +
    • + NetLogo 6.0.3 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
    • +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/6.0.4/index.html b/src/pages/downloads/archive/html/6.0.4/index.html new file mode 100644 index 00000000..4bad7e27 --- /dev/null +++ b/src/pages/downloads/archive/html/6.0.4/index.html @@ -0,0 +1,230 @@ + + + + + + NetLogo 6.0.4 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 6.0.4 Downloads

    +

    June 14, 2018

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (209 MB) +
    +
    + + Windows (32-bit) +
    + Download + (181 MB) +
    +
    + + Windows (64-bit) +
    + Download + (183 MB) +
    +
    + + Linux (32-bit) +
    + Download + (203 MB) +
    +
    + + Linux (64-bit) +
    + Download + (200 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + Some users have reported problems running NetLogo 6 on Mac OS Sierra. We're continuing to investigate this + and hope to find a fix soon. For the latest updates and workaround information, please see our + known issues page. +
    • +
    • + NetLogo 6.0.4 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
    • +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/6.0/index.html b/src/pages/downloads/archive/html/6.0/index.html new file mode 100644 index 00000000..622d4fca --- /dev/null +++ b/src/pages/downloads/archive/html/6.0/index.html @@ -0,0 +1,230 @@ + + + + + + NetLogo 6.0.4 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 6.0.4 Downloads

    +

    June 14, 2018

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (209 MB) +
    +
    + + Windows (32-bit) +
    + Download + (181 MB) +
    +
    + + Windows (64-bit) +
    + Download + (183 MB) +
    +
    + + Linux (32-bit) +
    + Download + (203 MB) +
    +
    + + Linux (64-bit) +
    + Download + (200 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + Some users have reported problems running NetLogo 6 on Mac OS Sierra. We're continuing to investigate this + and hope to find a fix soon. For the latest updates and workaround information, please see our + known issues page. +
    • +
    • + NetLogo 6.0.4 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
    • +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/6.0beta/index.html b/src/pages/downloads/archive/html/6.0beta/index.html new file mode 100644 index 00000000..5c861435 --- /dev/null +++ b/src/pages/downloads/archive/html/6.0beta/index.html @@ -0,0 +1,222 @@ + + + + + + NetLogo 6.0-M6 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 6.0-M6 Downloads

    +

    May 3, 2016

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (161 MB) +
    +
    + + Windows (32-bit) +
    + Download + (150 MB) +
    +
    + + Windows (64-bit) +
    + Download + (151 MB) +
    +
    + + Linux (32-bit) +
    + Download + (161 MB) +
    +
    + + Linux (64-bit) +
    + Download + (158 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + NetLogo 6.0-M6 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. There are no functional changes + between 5.2.1 and 5.3. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • + +
    • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/6.1.0/index.html b/src/pages/downloads/archive/html/6.1.0/index.html new file mode 100644 index 00000000..029fedff --- /dev/null +++ b/src/pages/downloads/archive/html/6.1.0/index.html @@ -0,0 +1,200 @@ + + + + + + NetLogo 6.1.0 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 6.1.0 Downloads

    +

    May 17, 2019

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Mac OS X +
    + Download + (213 MB) +
    +
    Windows (32-bit) +
    + Download + (185 MB) +
    +
    Windows (64-bit) +
    + Download + (187 MB) +
    +
    Linux (32-bit) +
    + Download + (211 MB) +
    +
    Linux (64-bit) +
    + Download + (208 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    Notes for Mac OS X users:

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + Some users have reported problems running NetLogo 6 on Mac OS Sierra. We're continuing to investigate this + and hope to find a fix soon. For the latest updates and workaround information, please see our + known issues page. +
    • +
    • + NetLogo 6.1.0 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
    • +
    + +

    +
    +

    Notes for Windows users:

    + +
    + + diff --git a/src/pages/downloads/archive/html/6.1.1/index.html b/src/pages/downloads/archive/html/6.1.1/index.html new file mode 100644 index 00000000..3cd74a67 --- /dev/null +++ b/src/pages/downloads/archive/html/6.1.1/index.html @@ -0,0 +1,232 @@ + + + + + + NetLogo 6.1.1 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 6.1.1 Downloads

    +

    September 26, 2019

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (215 MB) +
    +
    + + Windows (32-bit) +
    + Download + (186 MB) +
    +
    + + Windows (64-bit) +
    + Download + (189 MB) +
    +
    + + Linux (32-bit) +
    + Download + (213 MB) +
    +
    + + Linux (64-bit) +
    + Download + (210 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + Some users have reported problems running NetLogo 6+ on Mac OS Catalina, Mojave, High Sierra, and Sierra + (10.12 - 10.15). We're continuing to investigate this and hope to find a fix soon. For the latest updates + and workaround information, please see our + known issues page. +
    • +
    • + NetLogo 6.1.1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
    • +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/6.1/index.html b/src/pages/downloads/archive/html/6.1/index.html new file mode 100644 index 00000000..e744740a --- /dev/null +++ b/src/pages/downloads/archive/html/6.1/index.html @@ -0,0 +1,232 @@ + + + + + + NetLogo 6.1.1 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 6.1.1 Downloads

    +

    September 26, 2019

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (215 MB) +
    +
    + + Windows (32-bit) +
    + Download + (186 MB) +
    +
    + + Windows (64-bit) +
    + Download + (189 MB) +
    +
    + + Linux (32-bit) +
    + Download + (213 MB) +
    +
    + + Linux (64-bit) +
    + Download + (210 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + Some users have reported problems running NetLogo 6+ on Mac OS Catalina, Mojave, High Sierra, and Sierra + (10.12 - 10.15). We're continuing to investigate this and hope to find a fix soon. For the latest updates + and workaround information, please see our + known issues page. +
    • +
    • + NetLogo 6.1.1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
    • +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/6.2.0/index.html b/src/pages/downloads/archive/html/6.2.0/index.html new file mode 100644 index 00000000..da242fd9 --- /dev/null +++ b/src/pages/downloads/archive/html/6.2.0/index.html @@ -0,0 +1,202 @@ + + + + + + NetLogo 6.2.0 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 6.2.0 Downloads

    +

    December 23, 2020

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Mac OS X +
    + Download + (235 MB) +
    +
    Windows (32-bit) +
    + Download + (204 MB) +
    +
    Windows (64-bit) +
    + Download + (206 MB) +
    +
    Linux (32-bit) +
    + Download + (225 MB) +
    +
    Linux (64-bit) +
    + Download + (224 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    Notes for Mac OS X users:

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + Some users have reported problems running NetLogo 6+ on Mac OS Catalina, Mojave, High Sierra, and Sierra + (10.12 - 10.15). We're continuing to investigate this and hope to find a fix soon. For the latest updates + and workaround information, please see our + known issues page. +
    • +
    • + NetLogo 6.2.0 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
    • +
    + +

    +
    +

    Notes for Windows users:

    + +
    + + diff --git a/src/pages/downloads/archive/html/6.2.1/index.html b/src/pages/downloads/archive/html/6.2.1/index.html new file mode 100644 index 00000000..47b5a33d --- /dev/null +++ b/src/pages/downloads/archive/html/6.2.1/index.html @@ -0,0 +1,232 @@ + + + + + + NetLogo 6.2.1 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 6.2.1 Downloads

    +

    October 14, 2021

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (242 MB) +
    +
    + + Windows (32-bit) +
    + Download + (210 MB) +
    +
    + + Windows (64-bit) +
    + Download + (213 MB) +
    +
    + + Linux (32-bit) +
    + Download + (231 MB) +
    +
    + + Linux (64-bit) +
    + Download + (231 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + Some users have reported problems running NetLogo 6+ on Mac OS Catalina, Mojave, High Sierra, and Sierra + (10.12 - 10.15). We're continuing to investigate this and hope to find a fix soon. For the latest updates + and workaround information, please see our + known issues page. +
    • +
    • + NetLogo 6.2.1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
    • +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/6.2.2/index.html b/src/pages/downloads/archive/html/6.2.2/index.html new file mode 100644 index 00000000..024d472a --- /dev/null +++ b/src/pages/downloads/archive/html/6.2.2/index.html @@ -0,0 +1,232 @@ + + + + + + NetLogo 6.2.2 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 6.2.2 Downloads

    +

    December 8, 2021

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (243 MB) +
    +
    + + Windows (32-bit) +
    + Download + (215 MB) +
    +
    + + Windows (64-bit) +
    + Download + (217 MB) +
    +
    + + Linux (32-bit) +
    + Download + (232 MB) +
    +
    + + Linux (64-bit) +
    + Download + (232 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + Some users have reported problems running NetLogo 6+ on Mac OS Catalina, Mojave, High Sierra, and Sierra + (10.12 - 10.15). We're continuing to investigate this and hope to find a fix soon. For the latest updates + and workaround information, please see our + known issues page. +
    • +
    • + NetLogo 6.2.2 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
    • +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/6.2/index.html b/src/pages/downloads/archive/html/6.2/index.html new file mode 100644 index 00000000..1e12dce0 --- /dev/null +++ b/src/pages/downloads/archive/html/6.2/index.html @@ -0,0 +1,232 @@ + + + + + + NetLogo 6.2.2 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 6.2.2 Downloads

    +

    December 8, 2021

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (243 MB) +
    +
    + + Windows (32-bit) +
    + Download + (215 MB) +
    +
    + + Windows (64-bit) +
    + Download + (217 MB) +
    +
    + + Linux (32-bit) +
    + Download + (232 MB) +
    +
    + + Linux (64-bit) +
    + Download + (232 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + Some users have reported problems running NetLogo 6+ on Mac OS Catalina, Mojave, High Sierra, and Sierra + (10.12 - 10.15). We're continuing to investigate this and hope to find a fix soon. For the latest updates + and workaround information, please see our + known issues page. +
    • +
    • + NetLogo 6.2.2 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
    • +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + If in doubt about which version to download, choose 32-bit, which works on either 32-bit or 64-bit + Windows. More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 8 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/6.3.0/index.html b/src/pages/downloads/archive/html/6.3.0/index.html new file mode 100644 index 00000000..c240eaa1 --- /dev/null +++ b/src/pages/downloads/archive/html/6.3.0/index.html @@ -0,0 +1,202 @@ + + + + + + NetLogo 6.3.0 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 6.3.0 Downloads

    +

    September 29, 2022

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Mac OS X +
    + Download + (350 MB) +
    +
    Windows (32-bit) +
    + Download + (302 MB) +
    +
    Windows (64-bit) +
    + Download + (314 MB) +
    +
    Linux (32-bit) +
    + Download + (307 MB) +
    +
    Linux (64-bit) +
    + Download + (326 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    Notes for Mac OS X users:

    + +
      +
    • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + Some users have reported problems running NetLogo 6+ on Mac OS Catalina, Mojave, High Sierra, and Sierra + (10.12 - 10.15). We're continuing to investigate this and hope to find a fix soon. For the latest updates + and workaround information, please see our + known issues page. +
    • +
    • + NetLogo 6.3.0 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
    • +
    + +

    +
    +

    Notes for Windows users:

    + +
    + + diff --git a/src/pages/downloads/archive/html/6.3/index.html b/src/pages/downloads/archive/html/6.3/index.html new file mode 100644 index 00000000..f655d8d8 --- /dev/null +++ b/src/pages/downloads/archive/html/6.3/index.html @@ -0,0 +1,232 @@ + + + + + + NetLogo 6.3.0 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 6.3.0 Downloads

    +

    September 29, 2022

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (350 MB) +
    +
    + + Windows (32-bit) +
    + Download + (302 MB) +
    +
    + + Windows (64-bit) +
    + Download + (314 MB) +
    +
    + + Linux (32-bit) +
    + Download + (307 MB) +
    +
    + + Linux (64-bit) +
    + Download + (326 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + Some users have reported problems running NetLogo 6+ on Mac OS Catalina, Mojave, High Sierra, and Sierra + (10.12 - 10.15). We're continuing to investigate this and hope to find a fix soon. For the latest updates + and workaround information, please see our + known issues page. +
    • +
    • + NetLogo 6.3.0 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
    • +
    • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + If you are not sure about which version to download and your computer was made after 2005, choose 64-bit. + More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/6.4.0-beta1/index.html b/src/pages/downloads/archive/html/6.4.0-beta1/index.html new file mode 100644 index 00000000..36389bc4 --- /dev/null +++ b/src/pages/downloads/archive/html/6.4.0-beta1/index.html @@ -0,0 +1,202 @@ + + + + + + NetLogo 6.4.0-beta1 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 6.4.0-beta1 Downloads

    +

    October 2, 2023

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Mac OS X +
    + Download + (457 MB) +
    +
    Windows (32-bit) +
    + Download + (583 MB) +
    +
    Windows (64-bit) +
    + Download + (591 MB) +
    +
    Linux (32-bit) +
    + Download + (413 MB) +
    +
    Linux (64-bit) +
    + Download + (434 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    Notes for Mac OS X users:

    + +
      +
    • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + Some users have reported problems running NetLogo 6+ on Mac OS Catalina, Mojave, High Sierra, and Sierra + (10.12 - 10.15). We're continuing to investigate this and hope to find a fix soon. For the latest updates + and workaround information, please see our + known issues page. +
    • +
    • + NetLogo 6.4.0-beta1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
    • +
    + +

    +
    +

    Notes for Windows users:

    + +
    + + diff --git a/src/pages/downloads/archive/html/6.4.0/index.html b/src/pages/downloads/archive/html/6.4.0/index.html new file mode 100644 index 00000000..3b54725d --- /dev/null +++ b/src/pages/downloads/archive/html/6.4.0/index.html @@ -0,0 +1,202 @@ + + + + + + NetLogo 6.4.0 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 6.4.0 Downloads

    +

    November 16, 2023

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Mac OS X +
    + Download + (346 MB) +
    +
    Windows (32-bit) +
    + Download + (298 MB) +
    +
    Windows (64-bit) +
    + Download + (311 MB) +
    +
    Linux (32-bit) +
    + Download + (332 MB) +
    +
    Linux (64-bit) +
    + Download + (353 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    Notes for Mac OS X users:

    + +
      +
    • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + Some users have reported problems running NetLogo 6+ on Mac OS Catalina, Mojave, High Sierra, and Sierra + (10.12 - 10.15). We're continuing to investigate this and hope to find a fix soon. For the latest updates + and workaround information, please see our + known issues page. +
    • +
    • + NetLogo 6.4.0 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
    • +
    + +

    +
    +

    Notes for Windows users:

    + +
    + + diff --git a/src/pages/downloads/archive/html/6.4/index.html b/src/pages/downloads/archive/html/6.4/index.html new file mode 100644 index 00000000..47302296 --- /dev/null +++ b/src/pages/downloads/archive/html/6.4/index.html @@ -0,0 +1,235 @@ + + + + + + NetLogo 6.4.0 Downloads + + + +

    + +

    + + + + +
    +

    NetLogo 6.4.0 Downloads

    +

    November 16, 2023

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X +
    + Download + (346 MB) +
    +
    + + Windows (32-bit) +
    + Download + (298 MB) +
    +
    + + Windows (64-bit) +
    + Download + (311 MB) +
    +
    + + Linux (32-bit) +
    + Download + (332 MB) +
    +
    + + Linux (64-bit) +
    + Download + (353 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + Some users have reported problems running NetLogo 6+ on Mac OS Catalina, Mojave, High Sierra, and Sierra + (10.12 - 10.15). We're continuing to investigate this and hope to find a fix soon. For the latest updates + and workaround information, please see our + known issues page. +
    • +
    • + NetLogo 6.4.0 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
    • +
    • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + If you are not sure about which version to download and your computer was made after 2005, choose 64-bit. + More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write + bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/7.0.0-beta1/index.html b/src/pages/downloads/archive/html/7.0.0-beta1/index.html new file mode 100644 index 00000000..d93003a7 --- /dev/null +++ b/src/pages/downloads/archive/html/7.0.0-beta1/index.html @@ -0,0 +1,251 @@ + + + + + + NetLogo 7.0.0-beta1 Downloads + + + +

    + NetLogo banner +

    + +

    + + + + +
    +

    NetLogo 7.0.0-beta1 Downloads

    +

    May 21, 2025

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X Intel +
    + Download + (488 MB) +
    +
    + + Mac OS X Silicon +
    + Download + (463 MB) +
    +
    + + Windows (32-bit) +
    + Download + (277 MB) +
    +
    + + Windows (64-bit) +
    + Download + (335 MB) +
    +
    + + Linux (32-bit) +
    + Download + (314 MB) +
    +
    + + Linux (64-bit) +
    + Download + (347 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + Some users have reported problems running NetLogo 6+ on Mac OS Catalina, Mojave, High Sierra, and Sierra + (10.12 - 10.15). We're continuing to investigate this and hope to find a fix soon. For the latest updates + and workaround information, please see our + known issues page. +
    • +
    • + NetLogo 7.0.0-beta1 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
    • +
    • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + If you are not sure about which version to download and your computer was made after 2005, choose 64-bit. + More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/7.0.0-beta2/index.html b/src/pages/downloads/archive/html/7.0.0-beta2/index.html new file mode 100644 index 00000000..052b595f --- /dev/null +++ b/src/pages/downloads/archive/html/7.0.0-beta2/index.html @@ -0,0 +1,251 @@ + + + + + + NetLogo 7.0.0-beta2 Downloads + + + +

    + NetLogo banner +

    + +

    + + + + +
    +

    NetLogo 7.0.0-beta2 Downloads

    +

    July 18, 2025

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X Intel +
    + Download + (391 MB) +
    +
    + + Mac OS X Silicon +
    + Download + (366 MB) +
    +
    + + Windows (64-bit) +
    + Download + (351 MB) +
    +
    + + Windows (32-bit) +
    + Download + (294 MB) +
    +
    + + Linux (64-bit) +
    + Download + (431 MB) +
    +
    + + Linux (32-bit) +
    + Download + (397 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + Some users have reported problems running NetLogo 6+ on Mac OS Catalina, Mojave, High Sierra, and Sierra + (10.12 - 10.15). We're continuing to investigate this and hope to find a fix soon. For the latest updates + and workaround information, please see our + known issues page. +
    • +
    • + NetLogo 7.0.0-beta2 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
    • +
    • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + If you are not sure about which version to download and your computer was made after 2005, choose 64-bit. + More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/7.0.0/index.html b/src/pages/downloads/archive/html/7.0.0/index.html new file mode 100644 index 00000000..849c1ac7 --- /dev/null +++ b/src/pages/downloads/archive/html/7.0.0/index.html @@ -0,0 +1,249 @@ + + + + + + NetLogo 7.0.0 Downloads + + + +

    + NetLogo banner +

    + +

    + + + + +
    +

    NetLogo 7.0.0 Downloads

    +

    September 8, 2025

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X Intel +
    + Download + (415 MB) +
    +
    + + Mac OS X Silicon +
    + Download + (390 MB) +
    +
    + + Windows (64-bit) +
    + Download + (376 MB) +
    +
    + + Windows (32-bit) +
    + Download + (353 MB) +
    +
    + + Linux (64-bit) +
    + Download + (413 MB) +
    +
    + + Linux (32-bit) +
    + Download + (379 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + Some users have reported problems running NetLogo 6+ on Mac OS Catalina, Mojave, High Sierra, and Sierra + (10.12 - 10.15). We're continuing to investigate this and hope to find a fix soon. For the latest updates + and workaround information, please see our + known issues page. +
    • +
    • + NetLogo 7.0.0 requires OS X 10.7.4 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
    • +
    • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + If you are not sure about which version to download and your computer was made after 2005, choose 64-bit. + More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/7.0.1/index.html b/src/pages/downloads/archive/html/7.0.1/index.html new file mode 100644 index 00000000..d1f2be37 --- /dev/null +++ b/src/pages/downloads/archive/html/7.0.1/index.html @@ -0,0 +1,249 @@ + + + + + + NetLogo 7.0.1 Downloads + + + +

    + NetLogo banner +

    + +

    + + + + +
    +

    NetLogo 7.0.1 Downloads

    +

    October 22, 2025

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X Intel +
    + Download + (418 MB) +
    +
    + + Mac OS X Silicon +
    + Download + (392 MB) +
    +
    + + Windows (64-bit) +
    + Download + (377 MB) +
    +
    + + Windows (32-bit) +
    + Download + (352 MB) +
    +
    + + Linux (64-bit) +
    + Download + (414 MB) +
    +
    + + Linux (32-bit) +
    + Download + (380 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + Some users have reported problems running NetLogo 6+ on Mac OS Catalina, Mojave, High Sierra, and Sierra + (10.12 - 10.15). We're continuing to investigate this and hope to find a fix soon. For the latest updates + and workaround information, please see our + known issues page. +
    • +
    • + NetLogo 7.0.1 requires OS X 10.8.3 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
    • +
    • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + If you are not sure about which version to download and your computer was made after 2005, choose 64-bit. + More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/7.0.2/index.html b/src/pages/downloads/archive/html/7.0.2/index.html new file mode 100644 index 00000000..4f526778 --- /dev/null +++ b/src/pages/downloads/archive/html/7.0.2/index.html @@ -0,0 +1,249 @@ + + + + + + NetLogo 7.0.2 Downloads + + + +

    + NetLogo banner +

    + +

    + + + + +
    +

    NetLogo 7.0.2 Downloads

    +

    October 24, 2025

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X Intel +
    + Download + (418 MB) +
    +
    + + Mac OS X Silicon +
    + Download + (392 MB) +
    +
    + + Windows (64-bit) +
    + Download + (377 MB) +
    +
    + + Windows (32-bit) +
    + Download + (352 MB) +
    +
    + + Linux (64-bit) +
    + Download + (414 MB) +
    +
    + + Linux (32-bit) +
    + Download + (380 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + Some users have reported problems running NetLogo 6+ on Mac OS Catalina, Mojave, High Sierra, and Sierra + (10.12 - 10.15). We're continuing to investigate this and hope to find a fix soon. For the latest updates + and workaround information, please see our + known issues page. +
    • +
    • + NetLogo 7.0.2 requires OS X 10.8.3 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
    • +
    • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + If you are not sure about which version to download and your computer was made after 2005, choose 64-bit. + More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/html/7.0.3-beta1/index.html b/src/pages/downloads/archive/html/7.0.3-beta1/index.html new file mode 100644 index 00000000..42a8435d --- /dev/null +++ b/src/pages/downloads/archive/html/7.0.3-beta1/index.html @@ -0,0 +1,251 @@ + + + + + + NetLogo 7.0.3-beta1 Downloads + + + +

    + NetLogo banner +

    + +

    + + + + +
    +

    NetLogo 7.0.3-beta1 Downloads

    +

    November 13, 2025

    +

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + Mac OS X Intel +
    + Download + (419 MB) +
    +
    + + Mac OS X Silicon +
    + Download + (391 MB) +
    +
    + + Windows (64-bit) +
    + Download + (378 MB) +
    +
    + + Windows (32-bit) +
    + Download + (352 MB) +
    +
    + + Linux (64-bit) +
    + Download + (416 MB) +
    +
    + + Linux (32-bit) +
    + Download + (382 MB) +
    +
    + +
    +

    + sign up for NetLogo community mailing lists
    + (where many questions can be posted and answered) +

    + +
    +

    + NetLogo is free, open source software.
    + Your donations (tax deductible) will help us continue to maintain and improve it. +

    +

    + Donate +
    +

    + +

    + + + + +
    +

    +
    + +

    + Notes for Mac OS X users:
    +

    + +
      +
    • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + Some users have reported problems running NetLogo 6+ on Mac OS Catalina, Mojave, High Sierra, and Sierra + (10.12 - 10.15). We're continuing to investigate this and hope to find a fix soon. For the latest updates + and workaround information, please see our + known issues page. +
    • +
    • + NetLogo 7.0.3-beta1 requires OS X 10.8.3 or higher. If you need to run NetLogo on an older version, please + consider + NetLogo 5.2.1 + or earlier. +
    • +
    + +

    +
    +

    + Notes for Windows users:
    +

    + +
      +
    • + Some users will see a Windows warning "Windows protected your PC" when running the installer. You can + continue to install NetLogo by clicking "More Info" in the prompt and then "Run Anyway". +
    • +
    • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    • + If you are not sure about which version to download and your computer was made after 2005, choose 64-bit. + More information is available + on the requirements page. +
    • +
    + +

    +
    + +

    + Notes for Linux users:
    +

    + +
      +
    • + Our installer includes Java 17 for NetLogo’s private use only. Other programs on your computer are + not affected. +
    • +
    + +

    +
    + +

    + Problems downloading? Write bugs@ccl.northwestern.edu. + +

    +
    + + diff --git a/src/pages/downloads/archive/mountain-lion.astro b/src/pages/downloads/archive/mountain-lion.astro new file mode 100644 index 00000000..6b1013f0 --- /dev/null +++ b/src/pages/downloads/archive/mountain-lion.astro @@ -0,0 +1,51 @@ +--- +import Layout from '../../../layouts/Layout.astro'; + +const title = 'NetLogo OS X Compatibility Info'; +--- + + +
    +

    NetLogo OS X 10.8 and later Compatibility Info

    + +

    Depending on your system settings, installation of NetLogo may be blocked by Apple's "Gatekeeper" feature.

    + +

    NetLogo versions before 5.0.4

    + +

    + If you try to install older NetLogo versions on OS X 10.8 or later, when you try to open the disk image you'll get + a rather alarming-seeming dialog that says NetLogo is "damaged and can't be opened. You should move it to the + trash." The OS is wrong; the application is fine. In order to open the disk image, you just need to open System + Preferences, go to the Security & Privacy panel, and change the "Allow applications downloaded from:" setting + for Gatekeeper to "Anywhere". + +

    NetLogo versions since 5.0.4

    + +

    + Versions of NetLogo 5.0.4 and later will still be blocked if your Gatekeeper is set to "Mac Store App" only, but + instead of Gatekeeper telling you that the file is damaged, it will tell you that it was not downloaded from the + app store. Setting your Gatekeeper to "Mac App Store and identified developers" will permit installation. + +

    + The first time you open NetLogo, you will see a dialog informing you that "NetLogo is an application + downloaded from the Internet. Are you sure you want to open it?" Clicking "Open" will dismiss the dialog and + prevent it from showing when launching NetLogo in the future. + +

    + Note that NetLogo should be installed and launched for the first time by the same account (one with + administrator privileges). Gatekeeper appears to prevent non-administrator users from opening applications + downloaded from the internet. + +

    About Gatekeeper

    + +

    + For more details, see this Apple support document. + +

    (return to download page)

    +

    +

    +

    +

    +

    +
    +