mirror of
https://github.com/dimitri/pgloader.git
synced 2025-08-08 15:27:00 +02:00
158 lines
6.4 KiB
HTML
158 lines
6.4 KiB
HTML
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
<link rel="shortcut icon" href="../../docs-assets/ico/favicon.png">
|
|
|
|
<title>pgloader</title>
|
|
|
|
<!-- Bootstrap core CSS -->
|
|
<link href="dist/css/bootstrap.css" rel="stylesheet">
|
|
|
|
<!-- Custom styles for this template -->
|
|
<link href="dist/carousel.css" rel="stylesheet">
|
|
</head>
|
|
<!-- NAVBAR
|
|
================================================== -->
|
|
<body>
|
|
<div class="navbar-wrapper">
|
|
<div class="container">
|
|
|
|
<div class="navbar navbar-inverse navbar-static-top" role="navigation">
|
|
<div class="container">
|
|
<div class="navbar-header">
|
|
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
|
|
<span class="sr-only">Toggle navigation</span>
|
|
<span class="icon-bar"></span>
|
|
<span class="icon-bar"></span>
|
|
<span class="icon-bar"></span>
|
|
</button>
|
|
<a class="navbar-brand" href="index.html">pgloader</a>
|
|
</div>
|
|
<div class="navbar-collapse collapse">
|
|
<ul class="nav navbar-nav">
|
|
<li><a href="index.html">Home</a></li>
|
|
<li><a href="howto/quickstart.html">Quick Start</a></li>
|
|
<li><a href="howto/pgloader.1.html">Reference documentation</a></li>
|
|
<li class="dropdown">
|
|
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Data Sources HowTos <b class="caret"></b></a>
|
|
<ul class="dropdown-menu">
|
|
<li class="dropdown-header">Plain Files</li>
|
|
<li><a href="howto/csv.html">CSV</a></li>
|
|
<li><a href="howto/fixed.html">Fixed format</a></li>
|
|
<li><a href="howto/geolite.html">Geolite</a></li>
|
|
<li class="divider"></li>
|
|
<li class="dropdown-header">Databases</li>
|
|
<li><a href="howto/dBase.html">dBase</a></li>
|
|
<li><a href="howto/sqlite.html">SQLite</a></li>
|
|
<li><a href="howto/mysql.html">MySQL</a></li>
|
|
</ul>
|
|
</li>
|
|
<li class="active"><a href="download.html">Download</a></li>
|
|
<li><a href="sponsors.html">Sponsors</a></li>
|
|
<li><a href="pgloader-moral-license.html">License</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<!-- an empty carousel -->
|
|
<div id="myCarousel" class="carousel slide" data-ride="carousel" style="height: 100px">
|
|
<div class="carousel-inner" style="height: 100px">
|
|
<div class="item active" style="height: 100px">
|
|
<img data-src="holder.js/900x100/auto/#777:#7a7a7a" style="height: 100px">
|
|
<!-- <div class="container"> -->
|
|
<!-- <div class="carousel-caption"> -->
|
|
<!-- <h1>Load data into PostgreSQL. Fast.</h1> -->
|
|
<!-- <p></p> -->
|
|
<!-- </div> -->
|
|
<!-- </div> -->
|
|
</div>
|
|
</div>
|
|
</div><!-- /.carousel -->
|
|
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-2"> </div>
|
|
<div class="col-md-8">
|
|
<h1>Download pgloader</h1>
|
|
<p>
|
|
You can fetch the source code
|
|
from <a href="https://github.com/dimitri/">GitHub</a> or fetch a
|
|
self-contained binary image using the following links:
|
|
</p>
|
|
<table class="table">
|
|
<tr><th>File Type</th><th>URL</th></tr>
|
|
<tr><td>Repository</td>
|
|
<td><a href="https://github.com/dimitri/pgloader">https://github.com/dimitri/pgloader</a></td>
|
|
</tr>
|
|
<tr><td>Sources</td>
|
|
<td><a href="https://github.com/dimitri/pgloader/releases/download/v3.4.1/pgloader-bundle-3.4.1.tgz">pgloader-bundle-3.4.1.tgz</a></td>
|
|
</tr>
|
|
</table>
|
|
<p>
|
|
Binary build are available on distributions where pgloader is
|
|
packaged, which currently includes
|
|
only <a href="https://packages.debian.org/sid/pgloader">debian</a>
|
|
and <a href="https://wiki.postgresql.org/wiki/Apt">apt.postgresql.org</a>
|
|
which covers both <tt>debian</tt> and <tt>ubuntu</tt> Operating
|
|
Systems.
|
|
</p>
|
|
<p>
|
|
Note that pgloader is easy enough to build from sources,
|
|
see <a href="https://github.com/dimitri/pgloader/blob/master/INSTALL.md">pgloader
|
|
INSTALL.md</a> file. For <tt>RPM</tt> based systems, see also
|
|
the <a href="https://github.com/dimitri/pgloader/blob/master/bootstrap-centos7.sh">bootstrap-centos7.sh</a>
|
|
script that prepares your build environment so that building is
|
|
then just a <tt>git clone</tt> then <tt>make</tt> away.
|
|
</p>
|
|
<p>
|
|
Building for the <i>Windows™</i> Operating System is easy enough
|
|
and the platform is fully supported. Please report any problem
|
|
there as usual, via
|
|
the <a href="https://github.com/dimitri/pgloader/issues">pgloader
|
|
issues</a> facility hosted at github.
|
|
</p>
|
|
</div>
|
|
<div class="col-md-2"> </div>
|
|
</div>
|
|
|
|
<!-- FOOTER -->
|
|
<footer>
|
|
<p class="pull-right"><a href="#">Back to top</a></p>
|
|
<p>© 2013-2014 Dimitri Fontaine. ·</p>
|
|
</footer>
|
|
|
|
</div><!-- /.container -->
|
|
|
|
|
|
<!-- Bootstrap core JavaScript
|
|
================================================== -->
|
|
<!-- Placed at the end of the document so the pages load faster -->
|
|
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
|
|
<script src="dist/js/bootstrap.min.js"></script>
|
|
<!-- <script src="docs-assets/js/holder.js"></script> -->
|
|
|
|
<script>
|
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
|
|
|
ga('create', 'UA-47059482-2', 'tapoueh.org');
|
|
ga('send', 'pageview');
|
|
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|